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

13 lines
232 B
C++
Raw Normal View History

2013-04-05 23:46:56 +03:00
#include <QtCore/QCoreApplication>
#include <QTextStream>
#include "uavobjectstest.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
UAVObjectsTest *test = new UAVObjectsTest();
2013-04-05 23:46:56 +03:00
return a.exec();
}