CIM++ Adapted CIM Codebase
GeographicalRegion.h
1 // GeographicalRegion.h
3 // Implementation of the Class GeographicalRegion
5 
6 #ifndef GEOGRAPHICALREGION_H
7 #define GEOGRAPHICALREGION_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Core/SubGeographicalRegion.h"
12 #include "IEC61970/Base/Core/IdentifiedObject.h"
13 
14 namespace IEC61970
15 {
16  namespace Base
17  {
18  namespace Core
19  {
24  {
25 
26  public:
28  virtual ~GeographicalRegion();
32  std::list<IEC61970::Base::Core::SubGeographicalRegion*> Regions;
33 
34  };
35 
36  }
37 
38  }
39 
40 }
41 #endif // GEOGRAPHICALREGION_H
Definition: AuxiliaryEquipment.h:13
std::list< IEC61970::Base::Core::SubGeographicalRegion * > Regions
Definition: GeographicalRegion.h:32
Definition: IdentifiedObject.h:36
Definition: GeographicalRegion.h:23