00001 #ifndef chiller_H
00002 #define chiller_H 1
00003
00008 #include "SObject.h"
00009
00010 class chiller: public SObject{
00011
00012 public:
00013
00016 chiller(const double temperature): m_T(temperature){}
00017
00019 chiller(){}
00020
00022 virtual ~chiller(){}
00023
00025 double T() const;
00026
00028 void stream(CSVParser& parser);
00029
00030
00032
00033
00034
00035
00036
00037
00038
00039
00040 private:
00041
00042 double m_T;
00043
00044 };
00045
00046 inline double chiller::T() const{
00047 return m_T;
00048 }
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058 #endif