diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-02-22 23:36:30 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-02-23 00:27:27 +0100 |
| commit | f344a43657f609343fec125f374e014692e4ca6a (patch) | |
| tree | e335326962d3ecdf1e7405f1cbbe0ad332b7507a /Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp | |
| parent | c698c07755fb95990f7b74ac525a65b2c725bfbf (diff) | |
Make DolphinWX/ mostly IWYU clean.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp b/Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp index 8afc73fab0..b16f150d74 100644 --- a/Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp @@ -2,9 +2,26 @@ // Licensed under GPLv2 // Refer to the license.txt file included. +#include <wx/bitmap.h> +#include <wx/chartype.h> +#include <wx/defs.h> +#include <wx/event.h> +#include <wx/gdicmn.h> +#include <wx/image.h> +#include <wx/listbase.h> +#include <wx/panel.h> +#include <wx/string.h> +#include <wx/windowid.h> +#include <wx/aui/auibar.h> +#include <wx/aui/framemanager.h> + +#include "Common/BreakPoints.h" +#include "Common/CommonTypes.h" #include "Common/FileUtil.h" +#include "Common/IniFile.h" #include "Core/HW/Memmap.h" #include "Core/PowerPC/PowerPC.h" +#include "DolphinWX/WxUtils.h" #include "DolphinWX/Debugger/BreakpointDlg.h" #include "DolphinWX/Debugger/BreakpointView.h" #include "DolphinWX/Debugger/BreakpointWindow.h" @@ -17,6 +34,8 @@ extern "C" { #include "DolphinWX/resources/toolbar_debugger_delete.c" } +class wxWindow; + class CBreakPointBar : public wxAuiToolBar { public: |
