summaryrefslogtreecommitdiffstats
path: root/House.h
diff options
context:
space:
mode:
Diffstat (limited to 'House.h')
-rw-r--r--House.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/House.h b/House.h
index 8a4b325..67d90f2 100644
--- a/House.h
+++ b/House.h
@@ -2,6 +2,7 @@
#define _HOUSE_H_
#include "Temparray.h"
+#include "Sun.h"
#include "Triangle.h"
#include <list>
#include <math.h>
@@ -9,7 +10,8 @@
class House
{
public:
- House(float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0);
+ House(float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0,
+ float latitude0);
std::list<Triangle> getTriangles(){
std::list<Triangle> triangles = temp.getTriangles();
return triangles;
@@ -17,7 +19,7 @@ class House
private:
Temparray temp;
- float collectortemp;
+ float collectortemp, latitude;
};
#endif /* _HOUSE_H_ */