CIM++ Adapted CIM Codebase
ACLineSegmentPhase.h
1 // ACLineSegmentPhase.h
3 // Implementation of the Class ACLineSegmentPhase
4 // Original author: kdemaree
6 
7 #ifndef ACLINESEGMENTPHASE_H
8 #define ACLINESEGMENTPHASE_H
9 
10 #include "IEC61970/Base/Wires/SinglePhaseKind.h"
11 #include "IEC61970/Base/Domain/Integer.h"
12 #include "IEC61970/Base/Wires/ACLineSegment.h"
13 #include "IEC61970/Base/Core/PowerSystemResource.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace Wires
20  {
25  {
26 
27  public:
29  virtual ~ACLineSegmentPhase();
33  IEC61970::Base::Wires::SinglePhaseKind phase;
41  IEC61970::Base::Domain::Integer sequenceNumber;
46 
47  };
48 
49  }
50 
51  }
52 
53 }
54 #endif // ACLINESEGMENTPHASE_H
Definition: ACLineSegmentPhase.h:24
Definition: ACLineSegment.h:38
Definition: AuxiliaryEquipment.h:13
IEC61970::Base::Domain::Integer sequenceNumber
Definition: ACLineSegmentPhase.h:41
Definition: PowerSystemResource.h:28
IEC61970::Base::Wires::ACLineSegment * ACLineSegment
Definition: ACLineSegmentPhase.h:45
IEC61970::Base::Wires::SinglePhaseKind phase
Definition: ACLineSegmentPhase.h:33