#ifndef _HOUSE_H_ #define _HOUSE_H_ #include "Temparray.h" #include "Triangle.h" #include #include class House { public: House(float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0); std::list getTriangles(){ std::list triangles = temp.getTriangles(); return triangles; } private: Temparray temp; float collectortemp; }; #endif /* _HOUSE_H_ */