summaryrefslogtreecommitdiffstats
path: root/House.h
blob: 8a4b325e228ee3859698ace02c493c32aa91d501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _HOUSE_H_
#define _HOUSE_H_

#include "Temparray.h"
#include "Triangle.h"
#include <list>
#include <math.h>

class House
{
  public:
    House(float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0);
    std::list<Triangle> getTriangles(){
      std::list<Triangle> triangles = temp.getTriangles();
      return triangles;
    }
    
  private:
    Temparray temp;
    float collectortemp;
};

#endif /* _HOUSE_H_ */