source: XMLIO_V2/dev/common/src/xmlio/date/noleap.hpp @ 219

Last change on this file since 219 was 219, checked in by hozdoba, 13 years ago

Préparation nouvelle arborescence

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