Changeset 4195 in orxonox.OLD for orxonox/branches/openAL/src/lib/sound/sound_engine.h
- Timestamp:
- May 16, 2005, 1:39:12 PM (20 years ago)
- Location:
- orxonox/branches/openAL/src/lib/sound
- Files:
-
- 1 added
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/openAL/src/lib/sound/sound_engine.h
r4194 r4195 1 1 /*! 2 \file proto_singleton.h3 \brief Definition of the ...singleton Class2 \file sound_engine.h 3 \brief Definition of the SoundEngine singleton Class 4 4 5 5 */ 6 6 7 #ifndef _ PROTO_SINGLETON_H8 #define _ PROTO_SINGLETON_H7 #ifndef _SOUND_ENGINE_H 8 #define _SOUND_ENGINE_H 9 9 10 10 #include "base_object.h" … … 12 12 // FORWARD DEFINITION 13 13 14 //! A default singleton class.15 class ProtoSingleton: public BaseObject {14 //! A Class that handles audio via the openAudioLibrary 15 class SoundEngine : public BaseObject { 16 16 17 17 public: 18 static ProtoSingleton* getInstance(void);19 virtual ~ ProtoSingleton(void);18 static SoundEngine* getInstance(void); 19 virtual ~SoundEngine(void); 20 20 21 21 private: 22 ProtoSingleton(void);23 static ProtoSingleton* singletonRef;22 SoundEngine(void); 23 static SoundEngine* singletonRef; 24 24 }; 25 25 26 #endif /* _ PROTO_SINGLETON_H */26 #endif /* _SOUND_ENGINE_H */
Note: See TracChangeset
for help on using the changeset viewer.