1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-12 02:54:15 +01:00

12 lines
178 B
C++
Raw Normal View History

2013-04-05 23:46:56 +03:00
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
2013-04-05 23:46:56 +03:00
w.show();
return a.exec();
}