IEC61970 17v23
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 #include "IEC61970/Base/ICCPConfiguration/BilateralExchangeActor.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace SCADA
20  {
29  {
30 
31  public:
33  virtual ~CommunicationLink();
37  std::list<IEC61970::Base::SCADA::RemoteUnit*> RemoteUnits;
39 
40  };
41 
42  }
43 
44  }
45 
46 }
47 #endif // COMMUNICATIONLINK_H
Definition: AuxiliaryEquipment.h:13
Definition: PowerSystemResource.h:29
Definition: BilateralExchangeActor.h:22