Commit 7aea4ba9 authored by Valentin Platzgummer's avatar Valentin Platzgummer

befor registering WimaController as QML type

parent 14dceec3
......@@ -406,14 +406,16 @@ HEADERS += \
src/api/QGCSettings.h \
src/api/QmlComponentInfo.h \
src/comm/MavlinkMessagesTimer.h \
src/GPS/Drivers/src/base_station.h
src/GPS/Drivers/src/base_station.h \
src/MissionManager/WimaController.h
SOURCES += \
src/api/QGCCorePlugin.cc \
src/api/QGCOptions.cc \
src/api/QGCSettings.cc \
src/api/QmlComponentInfo.cc \
src/comm/MavlinkMessagesTimer.cc
src/comm/MavlinkMessagesTimer.cc \
src/MissionManager/WimaController.cc
#
# Unit Test specific configuration goes here (requires full debug build with all plugins)
......
#include "WimaController.h"
WimaController::WimaController(QObject *parent) : QObject(parent)
{
}
#ifndef WIMACONTROLLER_H
#define WIMACONTROLLER_H
#include <QObject>
class WimaController : public QObject
{
Q_OBJECT
public:
explicit WimaController(QObject *parent = nullptr);
signals:
public slots:
};
#endif // WIMACONTROLLER_H
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment