MCPcopy Create free account
hub / github.com/BatchDrake/SigDigger / Application

Method Application

App/Application.cpp:51–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49
50
51Application::Application(QWidget *parent) : QMainWindow(parent), ui(this)
52{
53 Suscan::Singleton *sing = Suscan::Singleton::get_instance();
54
55 sing->init_plugins();
56
57 this->mediator = new UIMediator(this, &this->ui);
58 this->deviceDetectThread = new QThread(this);
59 this->deviceDetectWorker = new DeviceDetectWorker();
60 this->deviceDetectWorker->moveToThread(this->deviceDetectThread);
61 this->deviceDetectThread->start();
62}
63
64Suscan::Object &&
65Application::getConfig(void)

Callers

nothing calls this directly

Calls 2

init_pluginsMethod · 0.80
startMethod · 0.45

Tested by

no test coverage detected