source: XIOS/dev/dev_olga/src/attribute_template_decl.cpp @ 1077

Last change on this file since 1077 was 537, checked in by rlacroix, 9 years ago

Add a new attribute type for durations and use it for the context's timestep.

Note that the "xios_time" type and the "xios_set_timestep" procedure have been removed from the Fortran interface. Instead, the "xios_duration" type and the "xios_get_context_attr"/"xios_set_context_attr" procedures should now be used to get/set the timestep.

  • 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
  • Property svn:eol-style set to native
File size: 419 bytes
Line 
1#include "attribute_template_impl.hpp"
2#include "attribute_template_specialisation.hpp"
3#include <string>
4#include "date.hpp"
5
6namespace xios
7{
8  template class CAttributeTemplate<int> ;
9  template class CAttributeTemplate<double> ;
10  template class CAttributeTemplate<bool> ;
11  template class CAttributeTemplate<string> ;
12  template class CAttributeTemplate<CDate> ;
13  template class CAttributeTemplate<CDuration> ;
14}
Note: See TracBrowser for help on using the repository browser.