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