IEC61970 17v23
BilateralExchangeActor.h
1 // BilateralExchangeActor.h
3 // Implementation of the Class BilateralExchangeActor
4 // Original author: selaost1
6 
7 #ifndef BILATERALEXCHANGEACTOR_H
8 #define BILATERALEXCHANGEACTOR_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Core/IdentifiedObject.h"
13 
14 namespace IEC61970
15 {
16  namespace Base
17  {
18  namespace ICCPConfiguration
19  {
20  class BilateralExchangeAgreement;
21 
23  {
24 
25  public:
27  virtual ~BilateralExchangeActor();
28  std::list<IEC61970::Base::ICCPConfiguration::BilateralExchangeAgreement*> ProviderBilateralExchange;
29 
30  };
31 
32  }
33 
34  }
35 
36 }
37 #endif // BILATERALEXCHANGEACTOR_H
Definition: AuxiliaryEquipment.h:13
Definition: BilateralExchangeActor.h:22
Definition: IdentifiedObject.h:36