initial import of telemetry handler

This commit is contained in:
2016-09-07 10:23:05 +03:00
parent 65c8f552de
commit c5cb5cb359
3 changed files with 221 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#include "awconfighelper.h"
#include "awformatterconfigfactory.h"
#include "awkeys.h"
#include "awtelemetryhandler.h"
void AWPlugin::registerTypes(const char *uri)
@ -36,4 +37,5 @@ void AWPlugin::registerTypes(const char *uri)
qmlRegisterType<AWFormatterConfigFactory>(uri, 1, 0,
"AWFormatterConfigFactory");
qmlRegisterType<AWKeys>(uri, 1, 0, "AWKeys");
qmlRegisterType<AWTelemetryHandler>(uri, 1, 0, "AWTelemetryHandler");
}