Ignore:
Timestamp:
05/26/15 16:13:45 (9 years ago)
Author:
rlacroix
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/field_decl.cpp

    r501 r593  
    33namespace xios 
    44{ 
    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) ; 
     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); 
    88 
     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; 
    912} 
Note: See TracChangeset for help on using the changeset viewer.