(file) Return to ArrayIterator.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/ArrayIterator.h between version 1.1 and 1.2

version 1.1, 2005/12/02 18:25:52 version 1.2, 2006/01/17 14:23:10
Line 124 
Line 124 
         return _data[i];         return _data[i];
     }     }
  
       //
       // The reset() methode set the Iterators object members to new
       // data pointer and size of a given Array<T>
       //
       void reset(Array<T>& x)
       {
           _data = (T*)x.getData();
           _size = x.size();
       }
   
 private: private:
  
     ArrayIterator& operator=(const ArrayIterator<T>& x);     ArrayIterator& operator=(const ArrayIterator<T>& x);


Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2