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