source: XIOS/trunk/src/date/d360.hpp @ 340

Last change on this file since 340 was 335, checked in by ymipsl, 12 years ago

Change namespace xmlioserver -> xios

YM

File size: 1.4 KB
Line 
1#ifndef __XMLIO_CD360Calendar__
2#define __XMLIO_CD360Calendar__
3
4/// xios headers ///
5#include "xmlioserver_spl.hpp"
6#include "calendar.hpp"
7
8namespace xios
9{
10   namespace date
11   {
12      /// ////////////////////// Déclarations ////////////////////// ///
13      class CD360Calendar : public CCalendar
14      {
15            /// Typedef ///
16            typedef CCalendar SuperClass;
17
18         public :
19
20            /// Constructeur ///
21            CD360Calendar(void);                                   // Not implemented yet.
22            CD360Calendar(const StdString & dateStr);
23            CD360Calendar(const StdString & dateStr,const StdString & timeOriginStr);
24            CD360Calendar(int yr = 0, int mth = 1, int d   = 1,
25                          int hr = 0, int min = 0, int sec = 0);
26            CD360Calendar(const CD360Calendar & calendar);       // Not implemented yet.
27            CD360Calendar(const CD360Calendar * calendar);       // Not implemented yet.
28
29            /// Accesseurs ///
30            virtual int getYearTotalLength(const CDate & date) const;
31            virtual int getMonthLength(const CDate & date) const;
32            virtual StdString getType(void) const;
33
34            /// Destructeur ///
35            virtual ~CD360Calendar(void);
36
37      }; // class CD360Calendar
38
39   } // namespace date
40} // namespace xmlioserver
41
42#endif // __XMLIO_CD360Calendar__
43
Note: See TracBrowser for help on using the repository browser.