CIM++ Adapted CIM Codebase
WorkKind.h
1 // WorkKind.h
3 // Implementation of the Class WorkKind
4 // Original author: T. Kostic
6 
7 #ifndef WORKKIND_H
8 #define WORKKIND_H
9 
10 namespace IEC61968
11 {
12  namespace Work
13  {
17  enum class WorkKind
18  {
22  construction,
26  inspection,
30  maintenance,
34  repair,
38  test,
42  service,
46  disconnect,
50  reconnect,
54  connect,
58  other
59  };
60 
61  }
62 
63 }
64 #endif // WORKKIND_H
Definition: BusbarSectionInfo.h:14