all repos — mgba @ 489b932c52d0d9eeff2d244150c047ded4eacc8f

mGBA Game Boy Advance Emulator

Header include cleanup
Jeffrey Pfau jeffrey@endrift.com
Sun, 20 Jul 2014 20:28:01 -0700
commit

489b932c52d0d9eeff2d244150c047ded4eacc8f

parent

23679adc3880ce330f0e87698600f42470ebc726

3 files changed, 6 insertions(+), 3 deletions(-)

jump to
M src/platform/qt/GameController.hsrc/platform/qt/GameController.h

@@ -7,8 +7,6 @@ #include <QObject>

#include <QMutex> #include <QString> -#include "AudioDevice.h" - extern "C" { #include "gba-thread.h" #ifdef BUILD_SDL

@@ -20,6 +18,8 @@ struct GBAAudio;

struct GBAVideoSoftwareRenderer; namespace QGBA { + +class AudioDevice; class GameController : public QObject { Q_OBJECT
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -5,6 +5,8 @@ #include <QKeyEvent>

#include <QKeySequence> #include <QMenuBar> +#include "AudioDevice.h" +#include "GameController.h" #include "GDBWindow.h" #include "GDBController.h"
M src/platform/qt/Window.hsrc/platform/qt/Window.h

@@ -8,11 +8,12 @@ extern "C" {

#include "gba.h" } -#include "GameController.h" #include "Display.h" namespace QGBA { +class AudioThread; +class GameController; class GDBController; class Window : public QMainWindow {