Ignore:
Timestamp:
09/06/11 11:57:45 (13 years ago)
Author:
hozdoba
Message:

Corrections après tests sur titane

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/xmlio/functor/instant.cpp

    r205 r265  
    1616      //--------------------------------------------------------------- 
    1717 
    18       void CInstant::apply(const DoubleArray         UNUSED(dinput), 
    19                                  DoubleArray         UNUSED(doutput)) 
     18      void CInstant::apply(const DoubleArray _dinput, 
     19                                 DoubleArray _doutput) 
    2020      { 
    21          ERROR("CInstant::apply(...)", << "Not implemented yet !"); 
     21         const double * it1  = _dinput->data(), 
     22                      * end1 = _dinput->data() + _dinput->num_elements(); 
     23         double * it   = _doutput->data(); 
     24         for (; it1 != end1; it1++, it++) *it  = *it1; 
    2225      } 
    2326 
Note: See TracChangeset for help on using the changeset viewer.