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