Changeset 9807 in orxonox.OLD for branches/new_class_id/src/lib/sound
- Timestamp:
- Sep 24, 2006, 11:26:48 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/sound/sound_buffer.cc
r9806 r9807 28 28 : data(new SoundBufferData) 29 29 { 30 this->registerObject(this, SoundBuffer::_objectList);30 // this->registerObject(this, SoundBuffer::_objectList); 31 31 } 32 32 /** … … 37 37 : data(new SoundBufferData) 38 38 { 39 this->registerObject(this, SoundBuffer::_objectList);39 // this->registerObject(this, SoundBuffer::_objectList); 40 40 this->load(fileName); 41 41 } … … 44 44 : data(buffer.data) 45 45 { 46 this->registerObject(this, SoundBuffer::_objectList);46 // this->registerObject(this, SoundBuffer::_objectList); 47 47 } 48 48 … … 50 50 : data(dataPointer) 51 51 { 52 this->registerObject(this, SoundBuffer::_objectList);52 // this->registerObject(this, SoundBuffer::_objectList); 53 53 }; 54 54 55 55 SoundBuffer::~SoundBuffer() 56 56 { 57 printf("Deleting Object of type SoundBuffer\n");58 57 } 59 58
Note: See TracChangeset
for help on using the changeset viewer.