Changeset 3157 for code/branches/pch/src/orxonox/sound
- Timestamp:
- Jun 13, 2009, 5:03:51 PM (15 years ago)
- Location:
- code/branches/pch/src/orxonox/sound
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/sound/CMakeLists.txt
r3078 r3157 1 1 ADD_SOURCE_FILES(ORXONOX_SRC_FILES 2 SoundManager.h3 SoundBase.h4 SoundMainMenu.h5 6 2 SoundManager.cc 7 3 SoundBase.cc -
code/branches/pch/src/orxonox/sound/SoundBase.cc
r3139 r3157 29 29 #include "SoundBase.h" 30 30 31 #include <string> 31 32 #include <vector> 32 33 #include <AL/alut.h> … … 181 182 } 182 183 183 ALuint SoundBase::loadOggFile( std::stringfilename)184 ALuint SoundBase::loadOggFile(const std::string& filename) 184 185 { 185 186 char inbuffer[4096]; -
code/branches/pch/src/orxonox/sound/SoundBase.h
r3156 r3157 57 57 58 58 private: 59 ALuint loadOggFile( std::stringfilename);59 ALuint loadOggFile(const std::string& filename); 60 60 ALuint source_; 61 61 ALuint buffer_;
Note: See TracChangeset
for help on using the changeset viewer.