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

Corrections après tests sur titane

File:
1 edited

Legend:

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

    r219 r266  
    88 
    99      CFunctor::CFunctor(const StdString & id, ARRAY(double, 1) doutput) 
    10          : SuperClass(id), doutput(doutput) 
     10         : SuperClass(id), doutput(doutput), nbcall(0) 
    1111      { /* Ne rien faire de plus */  } 
    1212 
     
    3939      ARRAY(double, 1) CFunctor::operator ()(const ARRAY(double, 1) dinput) 
    4040      { 
     41         this->nbcall++; 
    4142         if (dinput->size() != this->doutput->size()) 
    4243            ERROR("CFunctor::operator ()(dinput)", 
     
    4849      } 
    4950 
     51      void CFunctor::final(void)  
     52      { 
     53         this->nbcall = 0; 
     54      }  
     55 
    5056      //--------------------------------------------------------------- 
    5157 
Note: See TracChangeset for help on using the changeset viewer.