QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
QGCCacheTile.h
Go to the documentation of this file.
1#pragma once
2
3#include <QtCore/QByteArray>
4#include <QtCore/QMetaType>
5#include <QtCore/QString>
6
8{
9 QGCCacheTile(const QString &hash_, const QByteArray &img_, const QString &format_, const QString &type_, quint64 tileSet_ = UINT64_MAX)
10 : tileSet(tileSet_)
11 , hash(hash_)
12 , img(img_)
13 , format(format_)
14 , type(type_)
15 {}
16 QGCCacheTile(const QString &hash_, quint64 tileSet_)
17 : tileSet(tileSet_)
18 , hash(hash_)
19 {}
20
21 quint64 tileSet;
22 QString hash;
23 QByteArray img;
24 QString format;
25 QString type;
26};
Q_DECLARE_METATYPE(satellite_info_s)
quint64 tileSet
QByteArray img
QGCCacheTile(const QString &hash_, const QByteArray &img_, const QString &format_, const QString &type_, quint64 tileSet_=UINT64_MAX)
Definition QGCCacheTile.h:9
QGCCacheTile(const QString &hash_, quint64 tileSet_)
QString format