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

Last change on this file since 1158 was 1158, checked in by oabramkina, 7 years ago

Two server levels: merging with trunk r1137.
There are bugs.

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