diff options
| author | fires.gc <fires.gc@gmail.com> | 2008-07-24 13:40:07 +0000 |
|---|---|---|
| committer | fires.gc <fires.gc@gmail.com> | 2008-07-24 13:40:07 +0000 |
| commit | 2f308cf77accfe9125eb2bf5fc53348fd9aaa058 (patch) | |
| tree | 07b20ba7642b61119eb1a80b21d967847c1d4b1a /Source/Core/DebuggerWX/src/LogWindow.h | |
| parent | 9e285ca377b336e3a3d2aaf763fa25ba20925f15 (diff) | |
minor improvements (mostly debugger)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@82 8ced0084-cf51-0410-be5f-012b33b47a6e
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:
|
