Changeset 5867 for code/branches/core5/src/orxonox/sound
- Timestamp:
- Oct 4, 2009, 12:02:28 AM (15 years ago)
- Location:
- code/branches/core5/src/orxonox/sound
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/orxonox/sound/SoundManager.cc
r5738 r5867 32 32 33 33 #include "util/Math.h" 34 #include "core/ScopedSingletonManager.h" 34 35 #include "CameraManager.h" 35 36 #include "graphics/Camera.h" … … 39 40 { 40 41 SoundManager* SoundManager::singletonPtr_s = NULL; 42 ManageScopedSingleton(SoundManager, ScopeID::Graphics); 41 43 42 44 /** -
code/branches/core5/src/orxonox/sound/SoundManager.h
r5850 r5867 32 32 #include <cassert> 33 33 #include <list> 34 #include "util/S copedSingleton.h"34 #include "util/Singleton.h" 35 35 #include "tools/interfaces/Tickable.h" 36 36 … … 43 43 * 44 44 */ 45 class _OrxonoxExport SoundManager : public S copedSingleton<SoundManager, ScopeID::Graphics>, public Tickable45 class _OrxonoxExport SoundManager : public Singleton<SoundManager>, public Tickable 46 46 { 47 friend class S copedSingleton<SoundManager, ScopeID::Graphics>;47 friend class Singleton<SoundManager>; 48 48 public: 49 49 SoundManager();
Note: See TracChangeset
for help on using the changeset viewer.