IEC61970 17v07
Plant.h
1 // Plant.h
3 // Implementation of the Class Plant
5 
6 #ifndef PLANT_H
7 #define PLANT_H
8 
9 #include "IEC61970/Base/Core/EquipmentContainer.h"
10 
11 namespace IEC61970
12 {
13  namespace Base
14  {
15  namespace Wires
16  {
21  {
22 
23  public:
24  Plant();
25  virtual ~Plant();
26 
27  };
28 
29  }
30 
31  }
32 
33 }
34 #endif // PLANT_H
Definition: AuxiliaryEquipment.h:13
Definition: EquipmentContainer.h:23
Definition: Plant.h:20