From 0c90985b20e3d39d6d761614f4c73e0eefc54170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20Ri=DF?= Date: Mon, 18 Jan 2010 23:20:00 +0100 Subject: Temparray verfeinert/House.cpp und House.h angefangen. --- House.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 House.h (limited to 'House.h') diff --git a/House.h b/House.h new file mode 100644 index 0000000..8a4b325 --- /dev/null +++ b/House.h @@ -0,0 +1,23 @@ +#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_ */ -- cgit v1.2.3