source: XIOS/trunk/src/date/allleap.hpp @ 501

Last change on this file since 501 was 501, checked in by ymipsl, 10 years ago

Add licence copyright to all file ond directory src using the command :
svn propset -R copyright -F header_licence src

XIOS is now officialy under CeCILL licence

YM

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 1.4 KB
Line 
1#ifndef __XMLIO_CAllLeapCalendar__
2#define __XMLIO_CAllLeapCalendar__
3
4/// xios headers ///
5#include "xmlioserver_spl.hpp"
6#include "calendar.hpp"
7
8namespace xios
9{
10      /// ////////////////////// Déclarations ////////////////////// ///
11      class CAllLeapCalendar : public CCalendar
12      {
13            /// Typedef ///
14            typedef CCalendar SuperClass;
15
16         public :
17
18            /// Constructeur ///
19//            CAllLeapCalendar(void);                                   // Not implemented yet.
20            CAllLeapCalendar(const StdString & dateStr);
21            CAllLeapCalendar(const StdString & dateStr,const StdString & timeOriginStr);
22            CAllLeapCalendar(int yr = 0, int mth = 1, int d   = 1,
23                            int hr = 0, int min = 0, int sec = 0);
24            CAllLeapCalendar(const CAllLeapCalendar & calendar);       // Not implemented yet.
25            CAllLeapCalendar(const CAllLeapCalendar * calendar);       // Not implemented yet.
26
27            /// Accesseurs ///
28            virtual int getYearTotalLength(const CDate & date) const;
29            virtual int getMonthLength(const CDate & date) const;
30            virtual StdString getType(void) const;
31
32            /// Destructeur ///
33            virtual ~CAllLeapCalendar(void);
34
35      }; // class CAllLeapCalendar
36
37} // namespace xmlioserver
38
39#endif // __XMLIO_CAllLeapCalendar__
Note: See TracBrowser for help on using the repository browser.