IEC61970 16v29a - IEC61968 12v08
ProcedureKind.h
1 // ProcedureKind.h
3 // Implementation of the Class ProcedureKind
4 // Original author: T. Kostic
6 
7 #ifndef PROCEDUREKIND_H
8 #define PROCEDUREKIND_H
9 
10 namespace IEC61968
11 {
12  namespace Assets
13  {
17  enum class ProcedureKind
18  {
19  _undef = -1, inspection,
20  diagnosis,
21  maintenance,
22  test,
23  other
24  };
25 
26  }
27 
28 }
29 #endif // PROCEDUREKIND_H
Definition: BusbarSectionInfo.h:14