QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
GPSManager.cc
Go to the documentation of this file.
1#include "GPSManager.h"
2#include "GPSRtk.h"
4
5#include <QtCore/QApplicationStatic>
6
7QGC_LOGGING_CATEGORY(GPSManagerLog, "GPS.GPSManager")
8
10
11GPSManager::GPSManager(QObject *parent)
12 : QObject(parent)
13 , _gpsRtk(new GPSRtk(this))
14{
15 // qCDebug(GPSManagerLog) << Q_FUNC_INFO << this;
16}
17
19{
20 // qCDebug(GPSManagerLog) << Q_FUNC_INFO << this;
21}
22
24{
25 return _gpsManager();
26}
Q_APPLICATION_STATIC(GPSManager, _gpsManager)
#define QGC_LOGGING_CATEGORY(name, categoryStr)
static GPSManager * instance()
Definition GPSManager.cc:23