summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src/RegisterWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DebuggerWX/src/RegisterWindow.h')
-rw-r--r--Source/Core/DebuggerWX/src/RegisterWindow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/src/RegisterWindow.h b/Source/Core/DebuggerWX/src/RegisterWindow.h
index 3c6bd4cabe..92e544c698 100644
--- a/Source/Core/DebuggerWX/src/RegisterWindow.h
+++ b/Source/Core/DebuggerWX/src/RegisterWindow.h
@@ -19,6 +19,7 @@
#define __REGISTERWINDOW_h__
class CRegisterView;
+class IniFile;
#undef RegisterWindow_STYLE
#define RegisterWindow_STYLE wxCAPTION | wxSYSTEM_MENU | wxCLOSE_BOX
@@ -35,6 +36,9 @@ class CRegisterWindow
CRegisterWindow(wxWindow* parent, wxWindowID id = 1, const wxString& title = wxT("Registers"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = RegisterWindow_STYLE);
virtual ~CRegisterWindow();
+ void Save(IniFile& _IniFile) const;
+ void Load(IniFile& _IniFile);
+
void NotifyUpdate();