Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 3, 2006, 4:55:19 PM (17 years ago)
Author:
patrick
Message:

removed most of the compiler bugs. more to come

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/coll_rect/src/lib/collision_reaction/collision_tube.h

    r9986 r9988  
    4949
    5050    typedef std::vector<Collision*>::iterator     CollisionIterator;
     51    typedef std::vector<Collision*>               CollisionVector;
     52
    5153
    5254    /* Constructor/Deconstructor/Singleton Interface */
     
    5961    CollisionTube(const CollisionTube& tube) {}
    6062
    61     static CollisionTube*          instance;            //!< the singleton instance
     63    static CollisionTube*          instance;                         //!< the singleton instance
    6264
    6365
     
    6971
    7072    /** @returns an iterator pointing to the beginning of the list */
    71     CollisionIterator& begin() { return this->_collisionList.begin(); }
     73    CollisionIterator begin() { return this->_collisionList.begin(); }
    7274    /** @returns an iterator pointing to the end of the list */
    73     CollisionIterator& end()   { return this->_collisionList.end(); }
     75    CollisionIterator end()   { return this->_collisionList.end(); }
    7476
    7577
    7678  private:
    77     std::vector<Collision*>         _collisionList;                      //!< the list of collisions since the last processing
     79    CollisionVector             _collisionList;                      //!< the list of collisions since the last processing
    7880
    7981
Note: See TracChangeset for help on using the changeset viewer.