source: XIOS/trunk/src/node/field_decl.cpp @ 895

Last change on this file since 895 was 593, checked in by rlacroix, 9 years ago

Add a new interface xios_recv_field to get local instant data from a field.

  • 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: 455 bytes
Line 
1#include "field_impl.hpp"
2
3namespace xios
4{
5  template void CField::setData<1>(const CArray<double, 1>& _data);
6  template void CField::setData<2>(const CArray<double, 2>& _data);
7  template void CField::setData<3>(const CArray<double, 3>& _data);
8
9  template void CField::getData<1>(CArray<double, 1>& _data) const;
10  template void CField::getData<2>(CArray<double, 2>& _data) const;
11  template void CField::getData<3>(CArray<double, 3>& _data) const;
12}
Note: See TracBrowser for help on using the repository browser.