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

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

Préparation nouvelle arborescence

File size: 888 bytes
Line 
1#include "noleap.hpp"
2
3namespace xmlioserver
4{
5   namespace date
6   {
7      /// ////////////////////// Définitions ////////////////////// ///
8
9      CNoLeapCalendar::CNoLeapCalendar(const StdString & dateStr)
10         : CCalendar("NoLeap", dateStr)
11      { /* Ne rien faire de plus */ }
12
13      CNoLeapCalendar::CNoLeapCalendar(int yr, int mth, int d,
14                                       int hr, int min, int sec)
15         : CCalendar("NoLeap", yr, mth, d, hr, min, sec)
16      { /* Ne rien faire de plus */ }
17
18      CNoLeapCalendar::~CNoLeapCalendar(void)
19      { /* Ne rien faire de plus */ }
20
21      ///--------------------------------------------------------------
22
23      StdString CNoLeapCalendar::getType(void) const
24      { return (StdString("noleap")); }
25
26      ///--------------------------------------------------------------
27   } // namespace date
28} // namespace xmlioserver
29
Note: See TracBrowser for help on using the repository browser.