// Copyright (C) 2014 Appello Systems AB. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QGEOMAPVERSION_H #define QGEOMAPVERSION_H #include #include QT_BEGIN_NAMESPACE class QGeoMapVersion { public: QGeoMapVersion(); bool isNewVersion(const QJsonObject &newVersionData) const; int version() const; void setVersion(const int); void setVersionData(const QJsonObject &versionData); QByteArray toJson() const; private: int m_version; QJsonObject m_versionData; }; QT_END_NAMESPACE #endif // QGEOMAPVERSION_H