My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
Date.h
1 #ifndef DATE_H
2 #define DATE_H
3 
11 // Include the C-style struct and method definitions this class is
12 // based on
13 
14 #include "gcp/control/code/unix/libunix_src/common/astrom.h"
15 
16 namespace gcp {
17  namespace antenna {
18  namespace control {
19 
20 
26  class Date {
27 
28  public:
29 
34  Date();
35 
39  void reset();
40 
46  void convertMjdUtcToDate(double utc);
47 
51  int getYear();
52 
53  private:
54 
58  gcp::control::Date date_;
59 
60  }; // End class Date
61 
62  }; // End namespace control
63  }; // End namespace antenna
64 } // End namespace gcp
65 
66 #endif // End #ifndef
int getYear()
Definition: Date.cc:40
void convertMjdUtcToDate(double utc)
Definition: Date.cc:30
void reset()
Definition: Date.cc:22
Date()
Definition: Date.cc:14
Definition: astrom.h:31
Definition: Date.h:26