~ubuntu-branches/ubuntu/wily/kunitconversion/wily-proposed

« back to all changes in this revision

Viewing changes to src/density_p.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-07-14 17:56:16 UTC
  • Revision ID: package-import@ubuntu.com-20140714175616-n92z93yphd8vce6b
Tags: upstream-5.0.0
ImportĀ upstreamĀ versionĀ 5.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   author Kashyap R Puranik
 
3
 *   email  kashthealien@gmail.com
 
4
 *   Copyright (C) 2014 John Layt <jlayt@kde.org>
 
5
 *
 
6
 *   This program is free software; you can redistribute it and/or modify
 
7
 *   it under the terms of the GNU Library General Public License as
 
8
 *   published by the Free Software Foundation; either version 2, or
 
9
 *   (at your option) any later version.
 
10
 *
 
11
 *   This program is distributed in the hope that it will be useful,
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *   GNU General Public License for more details
 
15
 *
 
16
 *   You should have received a copy of the GNU Library General Public
 
17
 *   License along with this program; if not, write to the
 
18
 *   Free Software Foundation, Inc.,
 
19
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
20
 */
 
21
 
 
22
#ifndef DENSITY_P_H
 
23
#define DENSITY_P_H
 
24
 
 
25
#include "unitcategory_p.h"
 
26
 
 
27
namespace KUnitConversion
 
28
{
 
29
 
 
30
class Density : public CustomCategory
 
31
{
 
32
public:
 
33
    Density();
 
34
};
 
35
 
 
36
} // KUnitConversion namespace
 
37
 
 
38
#endif