QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
QGCTileSet.h
Go to the documentation of this file.
1#pragma once
2
3#include <QtCore/QMetaType>
4#include <QtCore/QtTypes>
5
7{
9 {
10 tileCount += other.tileCount;
11 tileSize += other.tileSize;
12 return *this;
13 }
14
15 void clear()
16 {
17 tileX0 = 0;
18 tileX1 = 0;
19 tileY0 = 0;
20 tileY1 = 0;
21 tileCount = 0;
22 tileSize = 0;
23 }
24
25 int tileX0 = 0;
26 int tileX1 = 0;
27 int tileY0 = 0;
28 int tileY1 = 0;
29 quint64 tileCount = 0;
30 quint64 tileSize = 0;
31};
Q_DECLARE_METATYPE(satellite_info_s)
QGCTileSet & operator+=(const QGCTileSet &other)
Definition QGCTileSet.h:8
void clear()
Definition QGCTileSet.h:15
quint64 tileCount
Definition QGCTileSet.h:29
quint64 tileSize
Definition QGCTileSet.h:30