1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-07 18:46:06 +01:00
LibrePilot/ground/openpilotgcs/src/plugins/uavobjects/tests/main.cpp

13 lines
244 B
C++
Raw Normal View History

#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();
}