QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
FirmwarePluginFactory.cc
Go to the documentation of this file.
2#include "FirmwarePlugin.h"
4
5#include <QtCore/QGlobalStatic>
6
7QGC_LOGGING_CATEGORY(FirmwarePluginFactoryLog, "FirmwarePlugin.FirmwarePluginFactory");
8
9/*===========================================================================*/
10
12 : QObject(parent)
13{
14 // qCDebug(FirmwarePluginFactoryLog) << Q_FUNC_INFO << this;
15
17}
18
20{
21 // qCDebug(FirmwarePluginFactoryLog) << Q_FUNC_INFO << this;
22}
23
24/*===========================================================================*/
25
26Q_GLOBAL_STATIC(FirmwarePluginFactoryRegister, _firmwarePluginFactoryRegisterInstance);
27
29{
30 return _firmwarePluginFactoryRegisterInstance();
31}
Q_GLOBAL_STATIC(FirmwarePluginFactoryRegister, _firmwarePluginFactoryRegisterInstance)
#define QGC_LOGGING_CATEGORY(name, categoryStr)
static FirmwarePluginFactoryRegister * instance()
void registerPluginFactory(FirmwarePluginFactory *pluginFactory)
Registers the specified logging category to the system.
FirmwarePluginFactory(QObject *parent=nullptr)