IEC61970 17v07
SubLoadArea.h
1 // SubLoadArea.h
3 // Implementation of the Class SubLoadArea
5 
6 #ifndef SUBLOADAREA_H
7 #define SUBLOADAREA_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/LoadModel/LoadGroup.h"
12 #include "IEC61970/Base/LoadModel/EnergyArea.h"
13 
14 namespace IEC61970
15 {
16  namespace Base
17  {
18  namespace LoadModel
19  {
25  {
26 
27  public:
28  SubLoadArea();
29  virtual ~SubLoadArea();
33  std::list<IEC61970::Base::LoadModel::LoadGroup*> LoadGroups;
34 
35  };
36 
37  }
38 
39  }
40 
41 }
42 #endif // SUBLOADAREA_H
Definition: AuxiliaryEquipment.h:13
Definition: SubLoadArea.h:24
Definition: EnergyArea.h:24
std::list< IEC61970::Base::LoadModel::LoadGroup * > LoadGroups
Definition: SubLoadArea.h:33