IEC61970 16v29a - IEC61968 12v08
RegulationBranchKind.h
1 // RegulationBranchKind.h
3 // Implementation of the Class RegulationBranchKind
4 // Original author: T. Kostic
6 
7 #ifndef REGULATIONBRANCHKIND_H
8 #define REGULATIONBRANCHKIND_H
9 
10 namespace IEC61968
11 {
12  namespace InfIEC61968
13  {
14  namespace InfAssetInfo
15  {
19  enum class RegulationBranchKind
20  {
21  _undef = -1, line,
22  transformer,
23  //warning Enumerator "switch" is renamed to "routing_selector", this does not commply the CIM standard!
24  routing_selector,
25  breaker,
26  recloser,
27  fuse,
28  sectionner,
29  other
30  };
31 
32  }
33 
34  }
35 
36 }
37 #endif // REGULATIONBRANCHKIND_H
Definition: BusbarSectionInfo.h:14