Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2009, 10:06:57 PM (15 years ago)
Author:
rgrieder
Message:

Reduced header file dependencies in the sound classes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/orxonox/sound/SoundManager.h

    r3078 r3133  
    2525 *      ...
    2626 */
    27 #ifndef _SOUNDMANGER_H__
    28 #define _SOUNDMANGER_H__
    29 
    30 #include <AL/al.h>
    31 #include <AL/alc.h>
     27#ifndef _SoundManager_H__
     28#define _SoundManager_H__
    3229
    3330#include "OrxonoxPrereqs.h"
     31
     32#include <list>
    3433#include "orxonox/objects/Tickable.h"
     34
     35// forward declarations
     36typedef struct ALCcontext_struct ALCcontext;
     37typedef struct ALCdevice_struct ALCdevice;
    3538
    3639namespace orxonox
     
    4952        void addSound(SoundBase* sound);
    5053        void removeSound(SoundBase* sound);
    51         virtual void tick(float dt);
     54        void tick(float dt);
    5255        bool isSoundAvailable();
    5356
     
    6164} // namespace orxonox
    6265
    63 #endif // _SOUNDMANAGER_H__
     66#endif /* _SoundManager_H__ */
Note: See TracChangeset for help on using the changeset viewer.