CIM++ Adapted CIM Codebase
AirCompressor.h
1 // AirCompressor.h
3 // Implementation of the Class AirCompressor
5 
6 #ifndef AIRCOMPRESSOR_H
7 #define AIRCOMPRESSOR_H
8 
9 #include "IEC61970/Base/Domain/Float.h"
10 #include "IEC61970/Base/Core/PowerSystemResource.h"
11 
12 namespace IEC61970
13 {
14  namespace Base
15  {
16  namespace Generation
17  {
18  namespace Production
19  {
25  {
26 
27  public:
28  AirCompressor();
29  virtual ~AirCompressor();
33  IEC61970::Base::Domain::Float airCompressorRating;
34 
35  };
36 
37  }
38 
39  }
40 
41  }
42 
43 }
44 #endif // AIRCOMPRESSOR_H
Definition: AuxiliaryEquipment.h:13
Definition: PowerSystemResource.h:28
IEC61970::Base::Domain::Float airCompressorRating
Definition: AirCompressor.h:33