diff options
Diffstat (limited to 'Source/Core/DebuggerWX/src/LogWindow.h')
| -rw-r--r-- | Source/Core/DebuggerWX/src/LogWindow.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/Core/DebuggerWX/src/LogWindow.h b/Source/Core/DebuggerWX/src/LogWindow.h index ebd0f35198..1fb5060db1 100644 --- a/Source/Core/DebuggerWX/src/LogWindow.h +++ b/Source/Core/DebuggerWX/src/LogWindow.h @@ -18,10 +18,9 @@ #ifndef LOGWINDOW_H_
#define LOGWINDOW_H_
-#include "wx/dialog.h"
-#include "wx/textctrl.h"
-#include "wx/checklst.h"
-#include "Debugger.h"
+class wxTextCtrl;
+class wxCheckListBox;
+class IniFile;
class CLogWindow
: public wxDialog
@@ -31,6 +30,8 @@ class CLogWindow CLogWindow(wxWindow* parent);
void NotifyUpdate();
+ void Save(IniFile& _IniFile) const;
+ void Load(IniFile& _IniFile);
private:
|
