CIM++ Adapted CIM Codebase
DesignKind.h
1 // DesignKind.h
3 // Implementation of the Class DesignKind
4 // Original author: T. Kostic
6 
7 #ifndef DESIGNKIND_H
8 #define DESIGNKIND_H
9 
10 namespace IEC61968
11 {
12  namespace InfIEC61968
13  {
14  namespace InfWork
15  {
19  enum class DesignKind
20  {
21  estimated,
22  asBuilt,
23  other
24  };
25 
26  }
27 
28  }
29 
30 }
31 #endif // DESIGNKIND_H
Definition: BusbarSectionInfo.h:14