CIM++ Adapted CIM Codebase
AnchorKind.h
1 // AnchorKind.h
3 // Implementation of the Class AnchorKind
4 // Original author: T. Kostic
6 
7 #ifndef ANCHORKIND_H
8 #define ANCHORKIND_H
9 
10 namespace IEC61968
11 {
12  namespace InfIEC61968
13  {
14  namespace InfAssets
15  {
19  enum class AnchorKind
20  {
21  concrete,
22  helix,
23  multiHelix,
24  rod,
25  screw,
26  unknown,
27  other
28  };
29 
30  }
31 
32  }
33 
34 }
35 #endif // ANCHORKIND_H
Definition: BusbarSectionInfo.h:14