IEC61970 17v23
ICCPInformationMessage.h
1 // ICCPInformationMessage.h
3 // Implementation of the Class ICCPInformationMessage
4 // Original author: herb
6 
7 #ifndef ICCPINFORMATIONMESSAGE_H
8 #define ICCPINFORMATIONMESSAGE_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Domain/String.h"
13 #include "IEC61970/Base/ICCPConfiguration/ICCPScope.h"
14 #include "IEC61970/Base/Core/IdentifiedObject.h"
15 #include "IEC61970/Base/ICCPConfiguration/TASE2BilateralTable.h"
16 
17 namespace IEC61970
18 {
19  namespace Base
20  {
21  namespace ICCPConfiguration
22  {
29  {
30 
31  public:
33  virtual ~ICCPInformationMessage();
39  IEC61970::Base::Domain::String localReference;
40  IEC61970::Base::ICCPConfiguration::ICCPScope scope = IEC61970::Base::ICCPConfiguration::ICCPScope::_undef;
41  std::list<IEC61970::Base::ICCPConfiguration::TASE2BilateralTable*> TASE2BilateralTable;
42 
43  };
44 
45  }
46 
47  }
48 
49 }
50 #endif // ICCPINFORMATIONMESSAGE_H
Definition: AuxiliaryEquipment.h:13
IEC61970::Base::Domain::String localReference
Definition: ICCPInformationMessage.h:39
Definition: ICCPInformationMessage.h:28
Definition: TASE2BilateralTable.h:24
Definition: IdentifiedObject.h:36