IEC61970 16v29a - IEC61968 12v08
CUAllowableAction.h
1 // CUAllowableAction.h
3 // Implementation of the Class CUAllowableAction
5 
6 #ifndef CUALLOWABLEACTION_H
7 #define CUALLOWABLEACTION_H
8 
9 #include <list>
10 
11 #include "IEC61968/Common/Status.h"
12 #include "IEC61968/InfIEC61968/InfWork/CompatibleUnit.h"
13 #include "IEC61968/InfIEC61968/InfWork/WorkIdentifiedObject.h"
14 
15 namespace IEC61968
16 {
17  namespace InfIEC61968
18  {
19  namespace InfWork
20  {
25  {
26 
27  public:
29  virtual ~CUAllowableAction();
31  std::list<IEC61968::InfIEC61968::InfWork::CompatibleUnit*> CompatibleUnits;
32 
33  };
34 
35  }
36 
37  }
38 
39 }
40 #endif // CUALLOWABLEACTION_H
Definition: Status.h:20
Definition: BusbarSectionInfo.h:14
Definition: WorkIdentifiedObject.h:23
Definition: CUAllowableAction.h:24