CIM++ Adapted CIM Codebase
UndergroundStructureKind.h
1 // UndergroundStructureKind.h
3 // Implementation of the Class UndergroundStructureKind
4 // Original author: T. Kostic
6 
7 #ifndef UNDERGROUNDSTRUCTUREKIND_H
8 #define UNDERGROUNDSTRUCTUREKIND_H
9 
10 namespace IEC61968
11 {
12  namespace InfIEC61968
13  {
14  namespace InfAssets
15  {
19  enum class UndergroundStructureKind
20  {
21  burd,
22  enclosure,
23  handhole,
24  manhole,
25  pad,
26  subsurfaceEnclosure,
27  trench,
28  tunnel,
29  vault,
30  pullbox
31  };
32 
33  }
34 
35  }
36 
37 }
38 #endif // UNDERGROUNDSTRUCTUREKIND_H
Definition: BusbarSectionInfo.h:14