IEC61970 17v07
Line.h
1 // Line.h
3 // Implementation of the Class Line
5 
6 #ifndef LINE_H
7 #define LINE_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  Line();
25  virtual ~Line();
26 
27  };
28 
29  }
30 
31  }
32 
33 }
34 #endif // LINE_H
Definition: AuxiliaryEquipment.h:13
Definition: EquipmentContainer.h:23
Definition: Line.h:20