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