| 21 | } |
| 22 | |
| 23 | bool EmbeddedApp::init() |
| 24 | { |
| 25 | qDebug() << "EmbeddedApp::init()"; |
| 26 | |
| 27 | auto root = new Root(this); |
| 28 | connect(root, &Root::indexCalled, this, &EmbeddedApp::indexCalled); |
| 29 | |
| 30 | return true; |
| 31 | } |
nothing calls this directly
no outgoing calls
no test coverage detected