CIM++ Adapted CIM_SINERGIEN Codebase
CommunicationLink.h
1 // CommunicationLink.h
3 // Implementation of the Class CommunicationLink
5 
6 #ifndef COMMUNICATIONLINK_H
7 #define COMMUNICATIONLINK_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/SCADA/RemoteUnit.h"
12 #include "IEC61970/Base/Core/PowerSystemResource.h"
13 
14 namespace IEC61970
15 {
16  namespace Base
17  {
18  namespace SCADA
19  {
28  {
29 
30  public:
32  virtual ~CommunicationLink();
36  std::list<IEC61970::Base::SCADA::RemoteUnit*> RemoteUnits;
37 
38  };
39 
40  }
41 
42  }
43 
44 }
45 #endif // COMMUNICATIONLINK_H
Definition: AuxiliaryEquipment.h:13
Definition: PowerSystemResource.h:28