Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 3 and Version 4 of code/doc/ObjectListIterator


Ignore:
Timestamp:
Sep 27, 2008, 4:17:04 AM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/doc/ObjectListIterator

    v3 v4  
    1313                                 it != ObjectList<myClass>::end(); ++it)
    1414{
    15     it->someFunction(...);
    16     myClass* myObject = *it;
     15    it->callSomeFunction(...);
     16    myClass* storeTheObject = (*it);
    1717}
    1818}}}