Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9666 in orxonox.OLD for trunk/src/lib/lang/new_class_id.h


Ignore:
Timestamp:
Aug 20, 2006, 11:51:51 PM (18 years ago)
Author:
bensch
Message:

trunk: going towards the implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/lang/new_class_id.h

    r9665 r9666  
    1010#include "type_info.h"
    1111#include <string>
    12 
     12#include <list>
    1313#include "new_object_list.h"
    1414
     
    2727private:
    2828  NewObjectListBase*            _objectList;
     29
     30  std::list<NewObjectListBase::IteratorBase*>  _iterators;
    2931};
    3032
     
    3335{
    3436  this->_objectList = &objectList;
    35   objectList.registerObject(object);
     37  _iterators.push_back(objectList.registerObject(object));
    3638}
    3739
Note: See TracChangeset for help on using the changeset viewer.