CIM++ Adapted CIM_SINERGIEN Codebase
Command.h
1 // Command.h
3 // Implementation of the Class Command
5 
6 #ifndef COMMAND_H
7 #define COMMAND_H
8 
9 #include "IEC61970/Base/Domain/Integer.h"
10 #include "IEC61970/Base/Meas/ValueAliasSet.h"
11 #include "IEC61970/Base/Meas/Control.h"
12 
13 namespace IEC61970
14 {
15  namespace Base
16  {
17  namespace Meas
18  {
23  {
24 
25  public:
26  Command();
27  virtual ~Command();
31  IEC61970::Base::Domain::Integer normalValue;
35  IEC61970::Base::Domain::Integer value;
40 
41  };
42 
43  }
44 
45  }
46 
47 }
48 #endif // COMMAND_H
Definition: AuxiliaryEquipment.h:13
IEC61970::Base::Meas::ValueAliasSet * ValueAliasSet
Definition: Command.h:39
Definition: Command.h:22
IEC61970::Base::Domain::Integer normalValue
Definition: Command.h:31
IEC61970::Base::Domain::Integer value
Definition: Command.h:35
Definition: Control.h:27
Definition: ValueAliasSet.h:31