BACKENDS: Reduce header interdependencies

svn-id: r55808
This commit is contained in:
Max Horn 2011-02-07 17:53:15 +00:00
parent da01896ee0
commit 57c932abdd
3 changed files with 10 additions and 4 deletions

View file

@ -29,6 +29,7 @@
#include "backends/events/sdl/sdl-events.h" #include "backends/events/sdl/sdl-events.h"
#include "backends/platform/sdl/sdl.h" #include "backends/platform/sdl/sdl.h"
#include "backends/graphics/graphics.h"
#include "common/config-manager.h" #include "common/config-manager.h"
// FIXME move joystick defines out and replace with confile file options // FIXME move joystick defines out and replace with confile file options

View file

@ -24,7 +24,13 @@
*/ */
#include "backends/modular-backend.h" #include "backends/modular-backend.h"
#include "backends/fs/fs-factory.h" #include "backends/fs/fs-factory.h"
#include "backends/events/default/default-events.h"
#include "backends/audiocd/default/default-audiocd.h"
#include "backends/mutex/null/null-mutex.h"
#include "backends/graphics/null/null-graphics.h"
#include "gui/message.h" #include "gui/message.h"
ModularBackend::ModularBackend() ModularBackend::ModularBackend()

View file

@ -29,10 +29,9 @@
#include "common/system.h" #include "common/system.h"
#include "common/timer.h" #include "common/timer.h"
#include "common/savefile.h" #include "common/savefile.h"
#include "backends/events/default/default-events.h"
#include "backends/audiocd/default/default-audiocd.h" class GraphicsManager;
#include "backends/mutex/null/null-mutex.h" class MutexManager;
#include "backends/graphics/null/null-graphics.h"
/** /**
* Base class for modular backends. * Base class for modular backends.