QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
QmlComponentInfo.cc
Go to the documentation of this file.
1#include "QmlComponentInfo.h"
3
4QGC_LOGGING_CATEGORY(QmlComponentInfoLog, "API.QmlComponentInfo");
5
6QmlComponentInfo::QmlComponentInfo(const QString &title, QUrl url, QUrl icon, QObject *parent)
7 : QObject(parent)
8 , _title(title)
9 , _url(url)
10 , _icon(icon)
11{
12 // qCDebug(QmlComponentInfoLog) << Q_FUNC_INFO << this;
13}
14
15QmlComponentInfo::~QmlComponentInfo()
16{
17 // qCDebug(QmlComponentInfoLog) << Q_FUNC_INFO << this;
18}
#define QGC_LOGGING_CATEGORY(name, categoryStr)