File main.cpp
File List > gui > main.cpp
Go to the documentation of this file
#include <QApplication>
#include "main_window.hpp"
int main(int argc, char* argv[]) {
QApplication a(argc, argv);
MainWindow window;
window.show();
return QApplication::exec();
}