Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
7aea4ba9
Commit
7aea4ba9
authored
Mar 18, 2019
by
Valentin Platzgummer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
befor registering WimaController as QML type
parent
14dceec3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
2 deletions
+27
-2
qgroundcontrol.pro
qgroundcontrol.pro
+4
-2
WimaController.cc
src/MissionManager/WimaController.cc
+6
-0
WimaController.h
src/MissionManager/WimaController.h
+17
-0
No files found.
qgroundcontrol.pro
View file @
7aea4ba9
...
...
@@ -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
)
...
...
src/MissionManager/WimaController.cc
0 → 100644
View file @
7aea4ba9
#include "WimaController.h"
WimaController
::
WimaController
(
QObject
*
parent
)
:
QObject
(
parent
)
{
}
src/MissionManager/WimaController.h
0 → 100644
View file @
7aea4ba9
#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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment