Initial Commit
[HECS.git] / HeatLossItem.h
blobcee8b62210c3ab74b9c54fadcc3841b6924aa83b
1 /***************************************************************************
2 * *
3 * HeatLossItem.h Copyright (C) 2008 by Jon Rumble *
4 * j.w.rumble@reading.ac.uk *
5 * *
6 * This file is part of HECS, *
7 * *
8 * HECS is free software: you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation, either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * HECS is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
20 ***************************************************************************/
23 #ifndef HEATLOSSITEM_H
24 #define HEATLOSSITEM_H
26 #include "Misc.h"
28 class HeatLossItem
31 public:
33 // Constructors/Destructors
37 /**
38 * CONSTRUCTORS
40 HeatLossItem(double area, double uValue);
41 ~HeatLossItem();
42 //HeatLossItem() {};
44 /**
45 * METHODS
48 void setArea(double var_in);
49 void setuValue(double var_in);
50 double getArea();
51 double getuValue();
52 double getwK();
54 private:
56 // Private attributes
59 double m_area;
60 double m_uValue;
61 double m_wK;
66 #endif // HEATLOSSITEM_H