Changeset 9715 in orxonox.OLD for branches/new_class_id/src/lib/sound
- Timestamp:
- Sep 1, 2006, 8:06:39 PM (18 years ago)
- Location:
- branches/new_class_id/src/lib/sound
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/sound/ogg_player.cc
r9686 r9715 49 49 namespace OrxSound 50 50 { 51 NewObjectListDefinition(OggPlayer);51 ObjectListDefinition(OggPlayer); 52 52 /** 53 53 * initializes an Ogg-player from a file -
branches/new_class_id/src/lib/sound/ogg_player.h
r9686 r9715 25 25 class OggPlayer : public BaseObject 26 26 { 27 NewObjectListDeclaration(OggPlayer);27 ObjectListDeclaration(OggPlayer); 28 28 29 29 public: -
branches/new_class_id/src/lib/sound/sound_buffer.cc
r9686 r9715 35 35 namespace OrxSound 36 36 { 37 NewObjectListDefinition(SoundBuffer);37 ObjectListDefinition(SoundBuffer); 38 38 ////////////////// 39 39 /* SOUND-BUFFER */ -
branches/new_class_id/src/lib/sound/sound_buffer.h
r9686 r9715 18 18 class SoundBuffer : public BaseObject 19 19 { 20 NewObjectListDeclaration(SoundBuffer);20 ObjectListDeclaration(SoundBuffer); 21 21 public: 22 22 SoundBuffer(const std::string& fileName); -
branches/new_class_id/src/lib/sound/sound_engine.cc
r9686 r9715 29 29 namespace OrxSound 30 30 { 31 NewObjectListDefinition(SoundEngine);31 ObjectListDefinition(SoundEngine); 32 32 ////////////////// 33 33 /* SOUND-ENGINE */ … … 202 202 203 203 // updating all the Sources positions 204 NewObjectList<SoundSource>::const_iterator sourceIT;204 ObjectList<SoundSource>::const_iterator sourceIT; 205 205 for (sourceIT = SoundSource::objectList().begin(); 206 206 sourceIT != SoundSource::objectList().end(); -
branches/new_class_id/src/lib/sound/sound_engine.h
r9686 r9715 27 27 class SoundEngine : public BaseObject 28 28 { 29 NewObjectListDeclaration(SoundEngine);29 ObjectListDeclaration(SoundEngine); 30 30 public: 31 31 virtual ~SoundEngine(); -
branches/new_class_id/src/lib/sound/sound_source.cc
r9686 r9715 25 25 namespace OrxSound 26 26 { 27 NewObjectListDefinition(SoundSource);27 ObjectListDefinition(SoundSource); 28 28 /** 29 29 * @brief creates a SoundSource at position sourceNode with the SoundBuffer buffer -
branches/new_class_id/src/lib/sound/sound_source.h
r9686 r9715 18 18 class SoundSource : public BaseObject 19 19 { 20 NewObjectListDeclaration(SoundSource);20 ObjectListDeclaration(SoundSource); 21 21 public: 22 22 SoundSource(const PNode* sourceNode = NULL, const SoundBuffer* buffer = NULL);
Note: See TracChangeset
for help on using the changeset viewer.