CIM++ Adapted CIM Codebase
WindingConnection.h
1 // WindingConnection.h
3 // Implementation of the Class WindingConnection
5 
6 #ifndef WINDINGCONNECTION_H
7 #define WINDINGCONNECTION_H
8 
9 namespace IEC61970
10 {
11  namespace Base
12  {
13  namespace Wires
14  {
18  enum class WindingConnection
19  {
23  D,
27  Y,
31  Z,
35  Yn,
39  Zn,
43  A,
47  I
48  };
49 
50  }
51 
52  }
53 
54 }
55 #endif // WINDINGCONNECTION_H
Definition: AuxiliaryEquipment.h:13