CIM++ Adapted CIM Codebase
NonlinearShuntCompensator.h
1 // NonlinearShuntCompensator.h
3 // Implementation of the Class NonlinearShuntCompensator
4 // Original author: selaost1
6 
7 #ifndef NONLINEARSHUNTCOMPENSATOR_H
8 #define NONLINEARSHUNTCOMPENSATOR_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Wires/ShuntCompensator.h"
13 #include "IEC61970/Base/Wires/NonlinearShuntCompensatorPoint.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace Wires
20  {
26  {
27 
28  public:
30  virtual ~NonlinearShuntCompensator();
34  std::list<IEC61970::Base::Wires::NonlinearShuntCompensatorPoint*> NonlinearShuntCompensatorPoints;
35 
36  };
37 
38  }
39 
40  }
41 
42 }
43 #endif // NONLINEARSHUNTCOMPENSATOR_H
Definition: AuxiliaryEquipment.h:13
std::list< IEC61970::Base::Wires::NonlinearShuntCompensatorPoint * > NonlinearShuntCompensatorPoints
Definition: NonlinearShuntCompensator.h:34
Definition: ShuntCompensator.h:34
Definition: NonlinearShuntCompensator.h:25