Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5776 in orxonox.OLD for trunk/src/lib/physics/physics_engine.h


Ignore:
Timestamp:
Nov 25, 2005, 2:14:02 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: stl::list in PhysicsEngine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/physics/physics_engine.h

    r5217 r5776  
    1313#include "physics_interface.h"
    1414#include "field.h"
     15#include <list>
     16
    1517
    1618// Forward Declaration
     
    5153  static PhysicsEngine*         singletonRef;         //!< the singleton reference of the PhysicsEngine
    5254
    53   tList<Field>*                 fields;               //!< a list of physicsl fields.
    54   tList<PhysicsConnection>*    connections;          //!< a list of physical connections.
     55  std::list<Field*>             fields;               //!< a list of physicsl fields.
     56  std::list<PhysicsConnection*> connections;          //!< a list of physical connections.
    5557  const tList<BaseObject>*      interfaces;           //!< The list of physical interfaces.
    5658};
Note: See TracChangeset for help on using the changeset viewer.