Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 13, 2006, 2:59:17 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: removed some std::list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/particles/engine/particle_engine.h

    r6619 r7130  
    1111#include "particle_system.h"
    1212#include "particle_emitter.h"
     13#include <list>
    1314
    1415#include "parser/tinyxml/tinyxml.h"
    1516
    1617// FORWARD DECLARATION
    17 template<class T> class tList;
    1818
    1919//! A ParticleConnection enables us to emitt from any emitter into any other particleSystem
     
    6464  static ParticleEngine* singletonRef;        //!< The reference to the engine.
    6565
    66   tList<ParticleSystem>* systemList;          //!< A list of Systems handled by the ParticleEngine.
    67   tList<ParticleEmitter>* emitterList;        //!< A list of Emitters handled by the ParticleEngine.
     66  std::list<ParticleSystem> systemList;          //!< A list of Systems handled by the ParticleEngine.
     67  std::list<ParticleEmitter> emitterList;        //!< A list of Emitters handled by the ParticleEngine.
    6868
    6969  tList<ParticleConnection>* connectionList;  //!< A list of Connections between Systems and Emitters.
Note: See TracChangeset for help on using the changeset viewer.