comment changes

This commit is contained in:
Dave Schuyler 2001-07-11 03:38:29 +00:00
parent 43270494d1
commit 5121be6abd
8 changed files with 7 additions and 24 deletions

View File

@ -1,4 +1,4 @@
// Filename: audio_manager.I
// Filename: audioManager.I
// Created by: skyler (June 6, 2001)
// Prior system by: cary
//

View File

@ -1,4 +1,4 @@
// Filename: audio_manager.h
// Filename: audioManager.h
// Created by: skyler (June 6, 2001)
// Prior system by: cary
//
@ -23,8 +23,6 @@
#include "config_audio.h"
#include "audioSound.h"
class AudioManagerInternal;
class EXPCL_PANDA AudioManager {
PUBLISHED:
// Create an AudioManager for each category of sounds you have.

View File

@ -1,4 +1,4 @@
// Filename: audio_sound.cxx
// Filename: audioSound.cxx
// Created by: skyler (June 6, 2001)
// Prior system by: cary
//

View File

@ -1,4 +1,4 @@
// Filename: audio_sound.h
// Filename: audioSound.h
// Created by: skyler (June 6, 2001)
// Prior system by: cary
//
@ -93,11 +93,6 @@ public:
return _type_handle;
}
static void init_type() {
/*
TypedObject::init_type();
register_type(_type_handle, "AudioSound",
TypedObject::get_class_type());
*/
TypedReferenceCount::init_type();
register_type(_type_handle, "AudioSound",
TypedReferenceCount::get_class_type());

View File

@ -1,4 +1,4 @@
// Filename: audio_manager.cxx
// Filename: milesAudioManager.cxx
// Created by: skyler (June 6, 2001)
// Prior system by: cary
//

View File

@ -1,4 +1,4 @@
// Filename: MilesAudioManager.h
// Filename: milesAudioManager.h
// Created by: skyler (June 6, 2001)
// Prior system by: cary
//

View File

@ -1,4 +1,4 @@
// Filename: milesAudioSound.cxx
// Filename: milesAudioSound.I
// Created by: skyler (June 6, 2001)
// Prior system by: cary
//

View File

@ -222,16 +222,6 @@ AudioSound::SoundStatus MilesAudioSound::status() const {
return AudioSound::BAD;
}
}
/*
bool MilesAudioSound::operator==(const AudioSound& other) const {
// These sounds only match if they are the same instance (address):
return ((int)this) == ((int)&other);
}
bool MilesAudioSound::operator!=(const AudioSound& other) const {
return ! (*this == other);
}
*/
#endif //]