X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fcore%2FInformationManager.hxx;h=f39f6e4335af3ef80c3cc5be58951293bc740e0b;hp=2f70d7365d7a27353ffc6ce843f47f99fae832f4;hb=568fd6801188fb8c092c7820102824a572ec656e;hpb=057e0e59829f19ee4d9a550f2d3dc9fe9df5c92c diff --git a/src/core/InformationManager.hxx b/src/core/InformationManager.hxx index 2f70d73..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; @@ -33,9 +35,9 @@ signals: 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; };