CIM++ Adapted CIM_SINERGIEN Codebase
ProtectedSwitch.h
1 // ProtectedSwitch.h
3 // Implementation of the Class ProtectedSwitch
5 
6 #ifndef PROTECTEDSWITCH_H
7 #define PROTECTEDSWITCH_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/CurrentFlow.h"
12 #include "IEC61970/Base/Protection/RecloseSequence.h"
13 #include "IEC61970/Base/Wires/Switch.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace Wires
20  {
26  {
27 
28  public:
30  virtual ~ProtectedSwitch();
39  std::list<IEC61970::Base::Protection::RecloseSequence*> RecloseSequences;
40 
41  };
42 
43  }
44 
45  }
46 
47 }
48 #endif // PROTECTEDSWITCH_H
Definition: AuxiliaryEquipment.h:13
std::list< IEC61970::Base::Protection::RecloseSequence * > RecloseSequences
Definition: ProtectedSwitch.h:39
Definition: ProtectedSwitch.h:25
Definition: CurrentFlow.h:23
IEC61970::Base::Domain::CurrentFlow breakingCapacity
Definition: ProtectedSwitch.h:35
Definition: Switch.h:29