}
Mainwindow::Mainwindow(InformationManager* mgr)
- : manager(mgr) {
+ : manager(mgr)
+ , logger(log4cxx::Logger::getLogger("Mainwindow")) {
openAction = new QAction(tr("&Open"), this);
// saveAction = new QAction(tr("&Save"), this);
exitAction = new QAction(tr("E&xit"), this);
#include <memory>
#include <map>
#include <set>
+
#include <QTextEdit>
#include <QPushButton>
#include <QMainWindow>
#include <QListWidget>
#include <QStackedWidget>
+#include <log4cxx/logger.h>
+
#include "disassembler/Disassembler.hxx"
#include "widgets/BasicBlockWidget.hxx"
#include "widgets/ScriptingDock.hxx"
std::map<uint64_t, BasicBlockWidget*> blocks;
std::set<Function*> functions;
InformationManager* manager;
+
+ log4cxx::LoggerPtr logger;
private Q_SLOTS:
void quit();
void open();