CIM++ Adapted CIM Codebase
SinglePhaseKind.h
1 // SinglePhaseKind.h
3 // Implementation of the Class SinglePhaseKind
4 // Original author: T. Kostic
6 
7 #ifndef SINGLEPHASEKIND_H
8 #define SINGLEPHASEKIND_H
9 
10 namespace IEC61970
11 {
12  namespace Base
13  {
14  namespace Wires
15  {
20  enum class SinglePhaseKind
21  {
25  A,
29  B,
33  C,
37  N,
41  s1,
45  s2
46  };
47 
48  }
49 
50  }
51 
52 }
53 #endif // SINGLEPHASEKIND_H
Definition: AuxiliaryEquipment.h:13