CIM++ Adapted CIM Codebase
MonthDay.h
1 // MonthDay.h
3 // Implementation of the Class MonthDay
4 // Original author: selaost1
6 
7 #ifndef MONTHDAY_H
8 #define MONTHDAY_H
9 
10 #include "IEC61970/Base/Domain/String.h"
11 
12 namespace IEC61970
13 {
14  namespace Base
15  {
16  namespace Domain
17  {
21  class MonthDay
22  {
23 
24  public:
25  MonthDay();
26  virtual ~MonthDay();
27  IEC61970::Base::Domain::String value;
28 
29  };
30 
31  }
32 
33  }
34 
35 }
36 #endif // MONTHDAY_H
Definition: AuxiliaryEquipment.h:13
Definition: MonthDay.h:21