X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2FMainwindow.hxx;h=8b46404b3a8331330177795188dbfb3205fb74b3;hp=3a2e10d3587de8980c0db8a843f3eaf5f7fc9be4;hb=adb0e762792c23674633b8513f4106b82aa38d15;hpb=2b057d0cd0501832d789b31551192e7e4202f4ca diff --git a/src/gui/Mainwindow.hxx b/src/gui/Mainwindow.hxx index 3a2e10d..8b46404 100644 --- a/src/gui/Mainwindow.hxx +++ b/src/gui/Mainwindow.hxx @@ -4,6 +4,7 @@ #include #include #include +#include #include #include @@ -19,6 +20,7 @@ class InformationManager; class FunctionWidget; class BasicBlockWidget; class ScriptingDock; +class Interpreter; class Mainwindow : public QMainWindow { Q_OBJECT @@ -45,6 +47,7 @@ private: QAction *exitAction; QAction *openAction; + QAction *loadAction; QAction *saveAction; std::map blocks; @@ -52,6 +55,7 @@ private: std::map objects_list; std::map objects_list_by_address; std::vector group_list; + std::map interpreter; InformationManager* manager; log4cxx::LoggerPtr logger; @@ -59,6 +63,7 @@ private: private Q_SLOTS: void quit(); void open(); + void load(); void save(); void switchMainPlane(QTreeWidgetItem* item); void showListContextMenu(const QPoint&);