CIM++ Adapted CIM Codebase
IrregularIntervalSchedule.h
1 // IrregularIntervalSchedule.h
3 // Implementation of the Class IrregularIntervalSchedule
5 
6 #ifndef IRREGULARINTERVALSCHEDULE_H
7 #define IRREGULARINTERVALSCHEDULE_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Core/BasicIntervalSchedule.h"
12 #include "IEC61970/Base/Core/IrregularTimePoint.h"
13 
14 namespace IEC61970
15 {
16  namespace Base
17  {
18  namespace Core
19  {
24  {
25 
26  public:
28  virtual ~IrregularIntervalSchedule();
32  std::list<IEC61970::Base::Core::IrregularTimePoint*> TimePoints;
33 
34  };
35 
36  }
37 
38  }
39 
40 }
41 #endif // IRREGULARINTERVALSCHEDULE_H
Definition: AuxiliaryEquipment.h:13
std::list< IEC61970::Base::Core::IrregularTimePoint * > TimePoints
Definition: IrregularIntervalSchedule.h:32
Definition: IrregularIntervalSchedule.h:23
Definition: BasicIntervalSchedule.h:23