CIM++ Adapted CIM Codebase
VolumeFlowRate.h
1 // VolumeFlowRate.h
3 // Implementation of the Class VolumeFlowRate
4 // Original author: SELAOST1
6 
7 #ifndef VOLUMEFLOWRATE_H
8 #define VOLUMEFLOWRATE_H
9 
10 #include "IEC61970/Base/Domain/UnitMultiplier.h"
11 #include "IEC61970/Base/Domain/UnitSymbol.h"
12 #include "IEC61970/Base/Domain/Float.h"
13 
14 namespace IEC61970
15 {
16  namespace Base
17  {
18  namespace Domain
19  {
24  {
25 
26  public:
28  virtual ~VolumeFlowRate();
29  static const IEC61970::Base::Domain::UnitMultiplier multiplier;
30  static const IEC61970::Base::Domain::UnitSymbol unit;
31  IEC61970::Base::Domain::Float value;
32 
33  };
34 
35  }
36 
37  }
38 
39 }
40 #endif // VOLUMEFLOWRATE_H
Definition: AuxiliaryEquipment.h:13
Definition: VolumeFlowRate.h:23