mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-07 18:46:06 +01:00
13 lines
244 B
C++
13 lines
244 B
C++
|
#include <QtCore/QCoreApplication>
|
||
|
#include <QTextStream>
|
||
|
#include "uavobjectstest.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QCoreApplication a(argc, argv);
|
||
|
|
||
|
UAVObjectsTest* test = new UAVObjectsTest();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|