CIM++ Adapted CIM Codebase
RegularIntervalSchedule.h
1 // RegularIntervalSchedule.h
3 // Implementation of the Class RegularIntervalSchedule
5 
6 #ifndef REGULARINTERVALSCHEDULE_H
7 #define REGULARINTERVALSCHEDULE_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/DateTime.h"
12 #include "IEC61970/Base/Domain/Seconds.h"
13 #include "IEC61970/Base/Core/RegularTimePoint.h"
14 #include "IEC61970/Base/Core/BasicIntervalSchedule.h"
15 
16 namespace IEC61970
17 {
18  namespace Base
19  {
20  namespace Core
21  {
26  {
27 
28  public:
30  virtual ~RegularIntervalSchedule();
42  std::list<IEC61970::Base::Core::RegularTimePoint*> TimePoints;
43 
44  };
45 
46  }
47 
48  }
49 
50 }
51 #endif // REGULARINTERVALSCHEDULE_H
Definition: AuxiliaryEquipment.h:13
IEC61970::Base::Domain::Seconds timeStep
Definition: RegularIntervalSchedule.h:38
Definition: Seconds.h:22
IEC61970::Base::Domain::DateTime endTime
Definition: RegularIntervalSchedule.h:34
Definition: BasicIntervalSchedule.h:23
Definition: RegularIntervalSchedule.h:25
std::list< IEC61970::Base::Core::RegularTimePoint * > TimePoints
Definition: RegularIntervalSchedule.h:42
Definition: DateTime.h:24