source: CONFIG/publications/ICOLMDZORINCA_CO2_Transport_GMD_2023/XIOS/src/date/noleap.hpp @ 6607

Last change on this file since 6607 was 6607, checked in by acosce, 10 months ago

XIOS used for ICOLMDZORINCA_CO2_Transport_GMD_2023

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