source: XIOS/dev/dev_olga/src/duration.hpp @ 1627

Last change on this file since 1627 was 1472, checked in by oabramkina, 6 years ago

Implementing a patch suggested by Rupert Nash in order to bring temporal_filter.cpp in compliance with c++98 norms.

For this, a constructor of CDuration has been added.

  • 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.7 KB
Line 
1#ifndef __XIOS_CDuration__
2#define __XIOS_CDuration__
3
4/// XIOS headers ///
5#include "xios_spl.hpp"
6#include "exception.hpp"
7
8namespace xios
9{
10      /// ////////////////////// Déclarations ////////////////////// ///
11      typedef long long int Time;
12      class CCalendar;
13
14      ///---------------------------------------------------------------
15
16      struct CDuration
17      {
18         public: /* static */
19            static CDuration FromString(const StdString& str);
20
21         public:
22            CDuration(double year=0.0, double month=0.0, double day=0.0, double hour=0.0, double minute=0.0, double second=0.0, double timestep=0.0);
23
24            /// Opérateurs ///
25            CDuration& operator=(const CDuration& duration);
26            bool operator==(const CDuration& duration);
27
28            friend StdOStream& operator<<(StdOStream& out, const CDuration& duration);
29            friend StdIStream& operator>>(StdIStream& in , CDuration& duration);
30
31            /// Test ///
32            bool isNone(void) const;
33
34            /// Traitement ///
35            CDuration& resolve(const CCalendar& calendar, bool noNegativeTime = false);
36            CDuration& solveTimeStep(const CCalendar& c);
37            /// Autres ///
38            StdString toString(void) const;
39            StdString toStringUDUnits(void) const;
40
41            /// Propriétés publiques ///
42            double year, month, day, hour, minute, second, timestep;
43      };
44
45      ///---------------------------------------------------------------
46
47      const extern CDuration Year, Month,  Week,   Day,
48                             Hour, Minute, Second, TimeStep, NoneDu;
49} // namespace xios
50
51#endif // __XIOS_CDuration__
Note: See TracBrowser for help on using the repository browser.