CIM++ Adapted CIM_SINERGIEN Codebase
AnalogLimit.h
1 // AnalogLimit.h
3 // Implementation of the Class AnalogLimit
5 
6 #ifndef ANALOGLIMIT_H
7 #define ANALOGLIMIT_H
8 
9 #include "IEC61970/Base/Domain/Float.h"
10 #include "IEC61970/Base/Meas/Limit.h"
11 
12 namespace IEC61970
13 {
14  namespace Base
15  {
16  namespace Meas
17  {
22  {
23 
24  public:
25  AnalogLimit();
26  virtual ~AnalogLimit();
30  IEC61970::Base::Domain::Float value;
31 
32  };
33 
34  }
35 
36  }
37 
38 }
39 #endif // ANALOGLIMIT_H
Definition: AuxiliaryEquipment.h:13
Definition: Limit.h:24
IEC61970::Base::Domain::Float value
Definition: AnalogLimit.h:30
Definition: AnalogLimit.h:21