#include #include "ui/MainWindow.h" #include "ConfigInterface.h" #include int main(int argc, char *argv[]) { // std::cout << "Main()" << std::endl; QApplication app(argc, argv); MainWindow window; // entry point goes to MainWindow::MainWindow() window.show(); // TODO: logging // i made a good debug filtering setup in ouros so could probably improt that into this project int status = app.exec(); // app execution; blocks until window close return status; }