[go: up one dir, main page]

Menu

[fedfda]: / source / main.cpp  Maximize  Restore  History

Download this file

12 lines (8 with data), 223 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#include <QApplication>
#include "main_window_dialog.hxx"
int main(int argc, char* argv[]) {
QApplication application(argc, argv);
MainWindow main_window;
main_window.show();
return application.exec();
}