CIM++ Adapted CIM Codebase
DCNode.h
1 // DCNode.h
3 // Implementation of the Class DCNode
4 // Original author: SELAOST1
6 
7 #ifndef DCNODE_H
8 #define DCNODE_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/DC/DCBaseTerminal.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 #include "IEC61970/Base/Topology/DCTopologicalNode.h"
15 #include "IEC61970/Base/DC/DCEquipmentContainer.h"
16 
17 namespace IEC61970
18 {
19  namespace Base
20  {
21  namespace DC
22  {
28  {
29 
30  public:
31  DCNode();
32  virtual ~DCNode();
33  std::list<IEC61970::Base::DC::DCBaseTerminal*> DCTerminals;
39 
40  };
41 
42  }
43 
44  }
45 
46 }
47 #endif // DCNODE_H
Definition: AuxiliaryEquipment.h:13
Definition: DCNode.h:27
IEC61970::Base::Topology::DCTopologicalNode * DCTopologicalNode
Definition: DCNode.h:37
Definition: IdentifiedObject.h:36
Definition: DCEquipmentContainer.h:26
Definition: DCTopologicalNode.h:21