IEC61970 17v23
IOPoint.h
1 // IOPoint.h
3 // Implementation of the Class IOPoint
4 // Original author: SELAOST1
6 
7 #ifndef IOPOINT_H
8 #define IOPOINT_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Core/IdentifiedObject.h"
13 #include "IEC61970/Base/ICCPConfiguration/ProvidedBilateralPoint.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace Meas
20  {
26  {
27 
28  public:
29  IOPoint();
30  virtual ~IOPoint();
31  std::list<IEC61970::Base::ICCPConfiguration::ProvidedBilateralPoint*> BilateralToIOPoint;
32 
33  };
34 
35  }
36 
37  }
38 
39 }
40 #endif // IOPOINT_H
Definition: AuxiliaryEquipment.h:13
Definition: IOPoint.h:25
Definition: IdentifiedObject.h:36