CIM++ Adapted CIM Codebase
SwitchPhase.h
1 // SwitchPhase.h
3 // Implementation of the Class SwitchPhase
4 // Original author: T. Kostic
6 
7 #ifndef SWITCHPHASE_H
8 #define SWITCHPHASE_H
9 
10 #include "IEC61970/Base/Domain/Boolean.h"
11 #include "IEC61970/Base/Wires/SinglePhaseKind.h"
12 #include "IEC61970/Base/Core/PowerSystemResource.h"
13 
14 namespace IEC61970
15 {
16  namespace Base
17  {
18  namespace Wires
19  {
25  {
26 
27  public:
28  SwitchPhase();
29  virtual ~SwitchPhase();
45  IEC61970::Base::Wires::SinglePhaseKind phaseSide1;
50  IEC61970::Base::Wires::SinglePhaseKind phaseSide2;
51 
52  };
53 
54  }
55 
56  }
57 
58 }
59 #endif // SWITCHPHASE_H
IEC61970::Base::Domain::Boolean normalOpen
Definition: SwitchPhase.h:40
IEC61970::Base::Domain::Boolean closed
Definition: SwitchPhase.h:34
Definition: AuxiliaryEquipment.h:13
IEC61970::Base::Wires::SinglePhaseKind phaseSide2
Definition: SwitchPhase.h:50
Definition: SwitchPhase.h:24
Definition: PowerSystemResource.h:28
IEC61970::Base::Wires::SinglePhaseKind phaseSide1
Definition: SwitchPhase.h:45
Definition: Boolean.h:21