Files
metabalus/src/main.cpp

25 lines
535 B
C++

#include <QApplication>
#include "ui/MainWindow.h"
#include "ConfigInterface.h"
#include <iostream>
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;
}