source: XIOS/dev/dev_olga/src/io/onetcdf4_decl.cpp @ 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
  • Property svn:eol-style set to native
File size: 751 bytes
Line 
1#include "onetcdf4_impl.hpp"
2
3namespace xios
4{
5# define  macro(type,size) \
6  template void CONetCDF4::writeData<type,size>(const CArray<type, size>& data, const StdString & name, \
7                                               bool collective, StdSize record, \
8                                               const std::vector<StdSize> * start, \
9                                               const std::vector<StdSize> * count) ;
10 
11  macro(int, 1)
12  macro(int, 2)
13  macro(double, 1)
14  macro(double, 2)
15  macro(double, 3)
16  macro(StdString, 1)
17 
18  template void CONetCDF4::setDefaultValue<double>(const StdString & varname, const double* value) ;
19  template void CONetCDF4::setDefaultValue<float>(const StdString & varname, const float* value) ;
20}
Note: See TracBrowser for help on using the repository browser.