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