Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 6, 2009, 3:08:09 PM (15 years ago)
Author:
erwin
Message:

implemented SoundManager class

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/sound/src/sound/SoundBase.h

    r2866 r2899  
    2828
    2929#include <al.h>
     30#include <string>
    3031
    3132class Ogre::SceneNode;
     
    3435namespace orxonox
    3536{
    36 
     37    /**
     38     * The SoudBase class is the base class for all sound file loader classes.
     39     * It server as main interface to the OpenAL library.
     40     *
     41     */
    3742    class SoundBase
    3843    {
     
    4954        bool isPlaying();
    5055
     56        virtual void loadFile(std::string filename) = 0;
     57
    5158    private:
    5259        ALuint source_;
Note: See TracChangeset for help on using the changeset viewer.