CIM++ Adapted CIM Codebase
Sensor.h
1 // Sensor.h
3 // Implementation of the Class Sensor
4 // Original author: selaost1
6 
7 #ifndef SENSOR_H
8 #define SENSOR_H
9 
10 #include "IEC61970/Base/AuxiliaryEquipment/AuxiliaryEquipment.h"
11 
12 namespace IEC61970
13 {
14  namespace Base
15  {
16  namespace AuxiliaryEquipment
17  {
23  {
24 
25  public:
26  Sensor();
27  virtual ~Sensor();
28 
29  };
30 
31  }
32 
33  }
34 
35 }
36 #endif // SENSOR_H
Definition: AuxiliaryEquipment.h:13