[go: up one dir, main page]

Menu

[r2]: / main.cpp  Maximize  Restore  History

Download this file

12 lines (8 with data), 188 Bytes

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