Header cleanup.

This commit is contained in:
Steve Checkoway
2004-10-05 11:03:43 +00:00
parent 1bcad560cc
commit 92b1b371c7
6 changed files with 4 additions and 6 deletions
+2
View File
@@ -9,6 +9,8 @@
#include "BGAnimation.h"
#include "song.h"
#include <deque>
#include <map>
class DancingCharacters;
class BrightnessOverlay: public ActorFrame
+1
View File
@@ -6,6 +6,7 @@
#include "RageTextureID.h"
#include "RageUtil.h"
#include "RageTypes.h"
#include <map>
class FontPage;
class RageTexture;
-2
View File
@@ -1,9 +1,7 @@
#include "global.h"
#include "NotesLoaderBMS.h"
#include "NotesLoader.h"
#include "NoteData.h"
#include "GameConstantsAndTypes.h"
#include "RageUtil.h"
#include "RageLog.h"
#include "GameManager.h"
#include "RageException.h"
-2
View File
@@ -2,8 +2,6 @@
#define NOTES_LOADER_BMS_H
#include "NotesLoader.h"
#include "GameConstantsAndTypes.h"
#include "NoteTypes.h"
#include <map>
class Song;
+1
View File
@@ -6,6 +6,7 @@
#include "RageUtil.h"
#include "RageLog.h"
#include "RageSurface.h"
#include <map>
#define CheckLine() \
if( xpm[line] == NULL ) { \
-2
View File
@@ -3,8 +3,6 @@
#ifndef RAGEUTIL_H
#define RAGEUTIL_H
#include <map>
#define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } }
#define SAFE_DELETE_ARRAY(p) { if(p) { delete[] (p); (p)=NULL; } }
#define SAFE_RELEASE(p) { if(p) { (p)->Release(); (p)=NULL; } }