| 49 | |
| 50 | |
| 51 | Application::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 | |
| 64 | Suscan::Object && |
| 65 | Application::getConfig(void) |
nothing calls this directly
no test coverage detected