CIM++ Adapted CIM Codebase
ReportingSuperGroup.h
1 // ReportingSuperGroup.h
3 // Implementation of the Class ReportingSuperGroup
4 // Original author: kdd
6 
7 #ifndef REPORTINGSUPERGROUP_H
8 #define REPORTINGSUPERGROUP_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Core/ReportingGroup.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace Core
20  {
25  {
26 
27  public:
29  virtual ~ReportingSuperGroup();
33  std::list<IEC61970::Base::Core::ReportingGroup*> ReportingGroup;
34 
35  };
36 
37  }
38 
39  }
40 
41 }
42 #endif // REPORTINGSUPERGROUP_H
Definition: AuxiliaryEquipment.h:13
Definition: ReportingSuperGroup.h:24
Definition: IdentifiedObject.h:36
std::list< IEC61970::Base::Core::ReportingGroup * > ReportingGroup
Definition: ReportingSuperGroup.h:33