CIM++ Adapted CIM Codebase
DCTopologicalIsland.h
1 // DCTopologicalIsland.h
3 // Implementation of the Class DCTopologicalIsland
4 // Original author: SELAOST1
6 
7 #ifndef DCTOPOLOGICALISLAND_H
8 #define DCTOPOLOGICALISLAND_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Topology/DCTopologicalNode.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace DC
20  {
28  {
29 
30  public:
32  virtual ~DCTopologicalIsland();
33  std::list<IEC61970::Base::Topology::DCTopologicalNode*> DCTopologicalNodes;
34 
35  };
36 
37  }
38 
39  }
40 
41 }
42 #endif // DCTOPOLOGICALISLAND_H
Definition: AuxiliaryEquipment.h:13
Definition: DCTopologicalIsland.h:27
Definition: IdentifiedObject.h:36