CIM++ Adapted CIM Codebase
Season.h
1 // Season.h
3 // Implementation of the Class Season
5 
6 #ifndef SEASON_H
7 #define SEASON_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/MonthDay.h"
12 #include "IEC61970/Base/LoadModel/SeasonDayTypeSchedule.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace LoadModel
20  {
25  {
26 
27  public:
28  Season();
29  virtual ~Season();
41  std::list<IEC61970::Base::LoadModel::SeasonDayTypeSchedule*> SeasonDayTypeSchedules;
42 
43  };
44 
45  }
46 
47  }
48 
49 }
50 #endif // SEASON_H
Definition: AuxiliaryEquipment.h:13
Definition: MonthDay.h:21
std::list< IEC61970::Base::LoadModel::SeasonDayTypeSchedule * > SeasonDayTypeSchedules
Definition: Season.h:41
IEC61970::Base::Domain::MonthDay startDate
Definition: Season.h:37
Definition: Season.h:24
Definition: IdentifiedObject.h:36
IEC61970::Base::Domain::MonthDay endDate
Definition: Season.h:33