IEC61970 17v23
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/DC/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();
36  std::list<IEC61970::Base::DC::DCTopologicalNode*> DCTopologicalNodes;
37 
38  };
39 
40  }
41 
42  }
43 
44 }
45 #endif // DCTOPOLOGICALISLAND_H
Definition: AuxiliaryEquipment.h:13
Definition: DCTopologicalIsland.h:27
Definition: IdentifiedObject.h:36
std::list< IEC61970::Base::DC::DCTopologicalNode * > DCTopologicalNodes
Definition: DCTopologicalIsland.h:36