X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fcore%2FInformationManager.hxx;h=f39f6e4335af3ef80c3cc5be58951293bc740e0b;hp=23645440a1e05760abecbf40f0d6587ca66aff81;hb=568fd6801188fb8c092c7820102824a572ec656e;hpb=1b43b26ba9b23cb5f3004db7b9b00f6b08227563 diff --git a/src/core/InformationManager.hxx b/src/core/InformationManager.hxx index 2364544..f39f6e4 100644 --- a/src/core/InformationManager.hxx +++ b/src/core/InformationManager.hxx @@ -11,6 +11,8 @@ #include "qt.hxx" #include "disassembler/Disassembler.hxx" +#include "core/events/NewFunctionEvent.hxx" + class Interpreter; class Function; @@ -28,14 +30,14 @@ class QPluginLoader; class InformationManager : public QObject { #ifndef SWIG Q_OBJECT -Q_SIGNALS: +signals: #else public: #endif void renameFunctionEvent(RenameFunctionEvent* event); - void newFunctionEvent(NewFunctionEvent* event); + void newFunctionEvent(NewFunctionEvent event); void changeCommentEvent(ChangeCommentEvent* event); - void reset(); + void resetEvent(); public: InformationManager(); ~InformationManager(); @@ -114,6 +116,7 @@ private: std::unique_ptr tmpfile; std::vector plugins; + QThread disassemblerThread; log4cxx::LoggerPtr logger; };