Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2006, 11:26:48 PM (18 years ago)
Author:
bensch
Message:

some more DEBUG-functionality to the ObjectList… something is not quite right… i wonder, what this might be…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/lang/base_object.h

    r9724 r9807  
    8484    /** Simple Constuctor @param objectList the ObjectList, @param iterator the (intrusive) Iterator inside of the ObjectList */
    8585    inline ClassEntry (ObjectListBase* objectList, ObjectListBase::IteratorBase* iterator) : _objectList(objectList), _iterator(iterator) {}
    86     ObjectListBase*                _objectList;  //!< A ObjectList this Object is part of
     86    ObjectListBase*                _objectList;  //!< An ObjectList this Object is part of
    8787    ObjectListBase::IteratorBase*  _iterator;    //!< An iterator pointing to the position of the Object inside of the List.
    8888  };
    89   typedef std::list<ClassEntry>        ClassList;   //!< Type definition for the List.
     89  typedef std::list<ClassEntry>       ClassEntries;   //!< Type definition for the List.
    9090
    9191  std::string                         className;    //!< the name of the class
    92   ClassList                           _classes;     //!< All Classes this object is part of.
     92  ClassEntries                        _classes;     //!< All Classes this object is part of.
    9393};
    9494
Note: See TracChangeset for help on using the changeset viewer.