From ed7394d72e917637e30e77fb1fe7beca4bff288e Mon Sep 17 00:00:00 2001 From: John Bauer Date: Wed, 29 Nov 2006 22:04:29 +0000 Subject: [PATCH] Reorder some more includes. --- stepmania/src/NotesLoaderSM.cpp | 8 ++++---- stepmania/src/NotesWriterSM.cpp | 22 +++++++++++----------- stepmania/src/NotesWriterSM.h | 1 - 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/stepmania/src/NotesLoaderSM.cpp b/stepmania/src/NotesLoaderSM.cpp index 522c5269d8..1e727054d2 100644 --- a/stepmania/src/NotesLoaderSM.cpp +++ b/stepmania/src/NotesLoaderSM.cpp @@ -1,14 +1,14 @@ #include "global.h" #include "NotesLoaderSM.h" +#include "BackgroundUtil.h" #include "GameManager.h" #include "MsdFile.h" +#include "NoteTypes.h" +#include "RageFileManager.h" #include "RageLog.h" #include "RageUtil.h" -#include "SongManager.h" -#include "RageFileManager.h" -#include "NoteTypes.h" -#include "BackgroundUtil.h" #include "song.h" +#include "SongManager.h" #include "Steps.h" const int MAX_EDIT_STEPS_SIZE_BYTES = 30*1024; // 30KB diff --git a/stepmania/src/NotesWriterSM.cpp b/stepmania/src/NotesWriterSM.cpp index 6a4c6afdb4..793cb58583 100644 --- a/stepmania/src/NotesWriterSM.cpp +++ b/stepmania/src/NotesWriterSM.cpp @@ -1,20 +1,20 @@ +#include +#include #include "global.h" #include "NotesWriterSM.h" -#include "Steps.h" -#include "RageUtil.h" +#include "BackgroundUtil.h" +#include "Foreach.h" #include "GameManager.h" -#include "RageLog.h" +#include "LocalizedString.h" +#include "NoteTypes.h" +#include "Profile.h" +#include "ProfileManager.h" #include "RageFile.h" #include "RageFileManager.h" +#include "RageLog.h" +#include "RageUtil.h" #include "song.h" -#include "NoteTypes.h" -#include -#include -#include "Foreach.h" -#include "BackgroundUtil.h" -#include "ProfileManager.h" -#include "Profile.h" -#include "LocalizedString.h" +#include "Steps.h" static RString BackgroundChangeToString( const BackgroundChange &bgc ) { diff --git a/stepmania/src/NotesWriterSM.h b/stepmania/src/NotesWriterSM.h index d29599c430..3244ec1374 100644 --- a/stepmania/src/NotesWriterSM.h +++ b/stepmania/src/NotesWriterSM.h @@ -5,7 +5,6 @@ class Song; class Steps; -class RageFile; namespace NotesWriterSM { bool Write( RString sPath, const Song &out, bool bSavingCache );