CIM++ Adapted CIM Codebase
MonthDayInterval.h
1 // MonthDayInterval.h
3 // Implementation of the Class MonthDayInterval
4 // Original author: selaost1
6 
7 #ifndef MONTHDAYINTERVAL_H
8 #define MONTHDAYINTERVAL_H
9 
10 #include "BaseClass.h"
11 #include "IEC61970/Base/Domain/MonthDay.h"
12 
13 namespace IEC61970
14 {
15  namespace Base
16  {
17  namespace Domain
18  {
22  class MonthDayInterval : public BaseClass
23  {
24 
25  public:
27  virtual ~MonthDayInterval();
36 
37  };
38 
39  }
40 
41  }
42 
43 }
44 #endif // MONTHDAYINTERVAL_H
Definition: AuxiliaryEquipment.h:13
Definition: MonthDay.h:21
IEC61970::Base::Domain::MonthDay start
Definition: MonthDayInterval.h:35
IEC61970::Base::Domain::MonthDay end
Definition: MonthDayInterval.h:31
Definition: BaseClass.h:6
Definition: MonthDayInterval.h:22