CIM++ Adapted CIM_SINERGIEN Codebase
LoadDynamics.h
1 // LoadDynamics.h
3 // Implementation of the Class LoadDynamics
4 // Original author: tsaxton
6 
7 #ifndef LOADDYNAMICS_H
8 #define LOADDYNAMICS_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Wires/EnergyConsumer.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 
15 namespace IEC61970
16 {
17  namespace Dynamics
18  {
19  namespace StandardModels
20  {
21  namespace LoadDynamics
22  {
38  {
39 
40  public:
41  LoadDynamics();
42  virtual ~LoadDynamics();
46  std::list<IEC61970::Base::Wires::EnergyConsumer*> EnergyConsumer;
47 
48  };
49 
50  }
51 
52  }
53 
54  }
55 
56 }
57 #endif // LOADDYNAMICS_H
Definition: AuxiliaryEquipment.h:13
Definition: IdentifiedObject.h:36
std::list< IEC61970::Base::Wires::EnergyConsumer * > EnergyConsumer
Definition: LoadDynamics.h:46