IEC61970 16v29a - IEC61968 12v08
ScheduledEvent.h
1 // ScheduledEvent.h
3 // Implementation of the Class ScheduledEvent
5 
6 #ifndef SCHEDULEDEVENT_H
7 #define SCHEDULEDEVENT_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/Seconds.h"
12 #include "IEC61968/Common/Status.h"
13 #include "IEC61970/Base/Domain/String.h"
14 #include "IEC61970/Base/Core/IdentifiedObject.h"
15 #include "IEC61968/Assets/Asset.h"
16 
17 namespace IEC61968
18 {
19  namespace Common
20  {
27  {
28 
29  public:
31  virtual ~ScheduledEvent();
40  IEC61970::Base::Domain::String type;
41  std::list<IEC61968::Assets::Asset*> Assets;
42 
43  };
44 
45  }
46 
47 }
48 #endif // SCHEDULEDEVENT_H
IEC61970::Base::Domain::Seconds duration
Definition: ScheduledEvent.h:35
Definition: Seconds.h:22
Definition: Status.h:20
IEC61970::Base::Domain::String type
Definition: ScheduledEvent.h:40
Definition: IdentifiedObject.h:36
Definition: BusbarSectionInfo.h:14
Definition: ScheduledEvent.h:26