Skip to content
TerrainFactGroup.h 955 B
Newer Older
DonLakeFlyer's avatar
DonLakeFlyer committed
/****************************************************************************
 *
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#pragma once

#include "FactGroup.h"

#include <QGeoCoordinate>

class TerrainFactGroup : public FactGroup
{
    Q_OBJECT

public:
    TerrainFactGroup(QObject* parent = nullptr);

    Q_PROPERTY(Fact* blocksPending  READ blocksPending  CONSTANT)
    Q_PROPERTY(Fact* blocksLoaded   READ blocksLoaded   CONSTANT)

    Fact* blocksPending () { return &_blocksPendingFact; }
    Fact* blocksLoaded  () { return &_blocksLoadedFact; }

    static const char* _blocksPendingFactName;
    static const char* _blocksLoadedFactName;

private:
    Fact _blocksPendingFact;
    Fact _blocksLoadedFact;
};