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

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

class House
{
  public:
    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;
    }
    
  private:
    Temparray temp;
    float collectortemp, latitude;
};

#endif /* _HOUSE_H_ */