IEC61970 16v29a - IEC61968 12v08
WorkStatusKind.h
1 // WorkStatusKind.h
3 // Implementation of the Class WorkStatusKind
4 // Original author: T. Kostic
6 
7 #ifndef WORKSTATUSKIND_H
8 #define WORKSTATUSKIND_H
9 
10 namespace IEC61968
11 {
12  namespace Work
13  {
17  enum class WorkStatusKind
18  {
22  _undef = -1, waitingOnApproval,
26  approved,
30  cancelled,
34  waitingToBeScheduled,
38  scheduled,
42  waitingOnMaterial,
46  inProgress,
51  completed,
56  closed,
60  dispatched,
64  enroute,
68  onSite
69  };
70 
71  }
72 
73 }
74 #endif // WORKSTATUSKIND_H
Definition: BusbarSectionInfo.h:14