IEC61970 17v07
StateVariable.h
1 // StateVariable.h
3 // Implementation of the Class StateVariable
4 // Original author: kdd
6 
7 #ifndef STATEVARIABLE_H
8 #define STATEVARIABLE_H
9 #include "BaseClass.h"
10 
11 namespace IEC61970
12 {
13  namespace Base
14  {
15  namespace StateVariables
16  {
20  class StateVariable : public BaseClass
21  {
22 
23  public:
24  StateVariable();
25  virtual ~StateVariable();
26 
27  };
28 
29  }
30 
31  }
32 
33 }
34 #endif // STATEVARIABLE_H
Definition: AuxiliaryEquipment.h:13
Definition: StateVariable.h:20
Definition: BaseClass.h:6