Browse Source

audio: change include guard naming to be more consistent

Closes #592
Closes #595
DrEuler 6 years ago
parent
commit
aad1bc9aa2

+ 3 - 3
panda/src/audio/audio.h

@@ -11,12 +11,12 @@
  * @date 2000-07-06
  * @date 2000-07-06
  */
  */
 
 
-#ifndef __AUDIO_H__
-#define __AUDIO_H__
+#ifndef AUDIO_H
+#define AUDIO_H
 
 
 #include "filterProperties.h"
 #include "filterProperties.h"
 #include "audioLoadRequest.h"
 #include "audioLoadRequest.h"
 #include "audioSound.h"
 #include "audioSound.h"
 #include "audioManager.h"
 #include "audioManager.h"
 
 
-#endif /* __AUDIO_H__ */
+#endif /* AUDIO_H */

+ 3 - 3
panda/src/audio/audioManager.h

@@ -12,8 +12,8 @@
  * Prior system by: cary
  * Prior system by: cary
  */
  */
 
 
-#ifndef __AUDIO_MANAGER_H__
-#define __AUDIO_MANAGER_H__
+#ifndef AUDIOMANAGER_H
+#define AUDIOMANAGER_H
 
 
 #include "config_audio.h"
 #include "config_audio.h"
 #include "audioSound.h"
 #include "audioSound.h"
@@ -222,4 +222,4 @@ operator << (std::ostream &out, const AudioManager &mgr) {
 
 
 #include "audioManager.I"
 #include "audioManager.I"
 
 
-#endif /* __AUDIO_MANAGER_H__ */
+#endif /* AUDIOMANAGER_H */

+ 3 - 3
panda/src/audio/audioSound.h

@@ -12,8 +12,8 @@
  * Prior system by: cary
  * Prior system by: cary
  */
  */
 
 
-#ifndef __AUDIOSOUND_H__
-#define __AUDIOSOUND_H__
+#ifndef AUDIOSOUND_H
+#define AUDIOSOUND_H
 
 
 #include "config_audio.h"
 #include "config_audio.h"
 #include "typedReferenceCount.h"
 #include "typedReferenceCount.h"
@@ -160,4 +160,4 @@ operator << (std::ostream &out, const AudioSound &sound) {
 EXPCL_PANDA_AUDIO std::ostream &
 EXPCL_PANDA_AUDIO std::ostream &
 operator << (std::ostream &out, AudioSound::SoundStatus status);
 operator << (std::ostream &out, AudioSound::SoundStatus status);
 
 
-#endif /* __AUDIOSOUND_H__ */
+#endif /* AUDIOSOUND_H */

+ 3 - 3
panda/src/audio/nullAudioManager.h

@@ -12,8 +12,8 @@
  * Prior system by: cary
  * Prior system by: cary
  */
  */
 
 
-#ifndef __NULL_AUDIO_MANAGER_H__
-#define __NULL_AUDIO_MANAGER_H__
+#ifndef NULLAUDIOMANAGER_H
+#define NULLAUDIOMANAGER_H
 
 
 #include "audioManager.h"
 #include "audioManager.h"
 #include "nullAudioSound.h"
 #include "nullAudioSound.h"
@@ -89,4 +89,4 @@ private:
   static TypeHandle _type_handle;
   static TypeHandle _type_handle;
 };
 };
 
 
-#endif /* __NULL_AUDIO_MANAGER_H__ */
+#endif /* NULLAUDIOMANAGER_H */

+ 3 - 3
panda/src/audio/nullAudioSound.h

@@ -12,8 +12,8 @@
  * Prior system by: cary
  * Prior system by: cary
  */
  */
 
 
-#ifndef __NULL_AUDIO_SOUND_H__
-#define __NULL_AUDIO_SOUND_H__
+#ifndef NULLAUDIOSOUND_H
+#define NULLAUDIOSOUND_H
 
 
 #include "audioSound.h"
 #include "audioSound.h"
 
 
@@ -91,4 +91,4 @@ private:
   friend class NullAudioManager;
   friend class NullAudioManager;
 };
 };
 
 
-#endif /* __NULL_AUDIO_SOUND_H__ */
+#endif /* NULLAUDIOSOUND_H */