QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
GPSManager.h
Go to the documentation of this file.
1#pragma once
2
3#include <QtCore/QLoggingCategory>
4#include <QtCore/QObject>
5
7
8class GPSRtk;
9
10class GPSManager : public QObject
11{
12 Q_OBJECT
13
14public:
15 GPSManager(QObject *parent = nullptr);
17
18 static GPSManager *instance();
19
20 GPSRtk *gpsRtk() { return _gpsRtk; }
21
22private:
23 GPSRtk *_gpsRtk = nullptr;
24};
Q_DECLARE_LOGGING_CATEGORY(AndroidSerialLog)
GPSRtk * gpsRtk()
Definition GPSManager.h:20
static GPSManager * instance()
Definition GPSManager.cc:23