CIM++ Adapted CIM Codebase
SubGeographicalRegion.h
1 // SubGeographicalRegion.h
3 // Implementation of the Class SubGeographicalRegion
5 
6 #ifndef SUBGEOGRAPHICALREGION_H
7 #define SUBGEOGRAPHICALREGION_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Wires/Line.h"
12 #include "IEC61970/Base/Core/Substation.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 ~SubGeographicalRegion();
33  std::list<IEC61970::Base::Wires::Line*> Lines;
37  std::list<IEC61970::Base::Core::Substation*> Substations;
38 
39  };
40 
41  }
42 
43  }
44 
45 }
46 #endif // SUBGEOGRAPHICALREGION_H
std::list< IEC61970::Base::Core::Substation * > Substations
Definition: SubGeographicalRegion.h:37
Definition: AuxiliaryEquipment.h:13
Definition: IdentifiedObject.h:36
std::list< IEC61970::Base::Wires::Line * > Lines
Definition: SubGeographicalRegion.h:33
Definition: SubGeographicalRegion.h:24