IEC61970 16v29a - IEC61968 12v08
UsagePointGroup.h
1 // UsagePointGroup.h
3 // Implementation of the Class UsagePointGroup
4 // Original author: T. Kostic
6 
7 #ifndef USAGEPOINTGROUP_H
8 #define USAGEPOINTGROUP_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Domain/String.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 #include "IEC61968/Metering/UsagePoint.h"
15 
16 namespace IEC61968
17 {
18  namespace Metering
19  {
27  {
28 
29  public:
31  virtual ~UsagePointGroup();
35  IEC61970::Base::Domain::String type;
39  std::list<IEC61968::Metering::UsagePoint*> UsagePoints;
40 
41  };
42 
43  }
44 
45 }
46 #endif // USAGEPOINTGROUP_H
std::list< IEC61968::Metering::UsagePoint * > UsagePoints
Definition: UsagePointGroup.h:39
IEC61970::Base::Domain::String type
Definition: UsagePointGroup.h:35
Definition: IdentifiedObject.h:36
Definition: BusbarSectionInfo.h:14
Definition: UsagePointGroup.h:26