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/SoundBase.h

    r3078 r3133  
    2626 *
    2727 */
    28 #ifndef _SOUNDBASE_H__
    29 #define _SOUNDBASE_H__
    30 
    31 #include <AL/al.h>
    32 #include <string>
     28#ifndef _SoundBase_H__
     29#define _SoundBase_H__
    3330
    3431#include "OrxonoxPrereqs.h"
     32#include <string>
    3533
    3634namespace orxonox
     
    6058
    6159    private:
    62         ALuint loadOggFile(std::string filename);
    63         ALuint source_;
    64         ALuint buffer_;
     60        uint32_t loadOggFile(std::string filename);
     61        uint32_t source_;
     62        uint32_t buffer_;
    6563        WorldEntity* entity_;
    6664
    67         ALint getSourceState();
     65        int32_t getSourceState();
    6866
    6967        static SoundManager* soundmanager_s;
     
    7169} // namepsace orxonox
    7270
    73 #endif // _SOUNDBASE_H__
     71#endif /* _SoundBase_H__ */
Note: See TracChangeset for help on using the changeset viewer.