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