Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5779 in orxonox.OLD for trunk/src/lib/sound/sound_engine.h


Ignore:
Timestamp:
Nov 26, 2005, 2:20:58 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: ClassList is now in std::list style
ShellCommand is now in std::list style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/sound/sound_engine.h

    r5405 r5779  
    1313#include "sound_source.h"
    1414
     15#include <list>
     16
    1517#define SOUND_DOPPLER_FACTOR       0.001          //!< A factor for the audible doppler effect
    1618#define SOUND_DOPPLER_VELOCITY     5000000        //!< A factor for the TravelSpeed of sound
     
    1820// FORWARD DECLARATION
    1921class PNode;
    20 template<class T> class tList;
    2122class IniParser;
    2223
     
    7071    float                    effectsVolume;            //!< the maximum volume of sound-effects in % (0f,1f]
    7172    PNode*                   listener;                 //!< The listener of the Scene
    72     tList<BaseObject>*       bufferList;               //!< A list of buffers
    73     tList<BaseObject>*       sourceList;               //!< A list for all the sources in the scene.
     73    std::list<BaseObject*>*  bufferList;               //!< A list of buffers
     74    std::list<BaseObject*>*  sourceList;               //!< A list for all the sources in the scene.
    7475
    7576};
Note: See TracChangeset for help on using the changeset viewer.