You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PayloadAPP/Src/RescueLoad/map/tianditu/include/timapjsonengine.h

37 lines
996 B
C

/**************************************************************************
* timapjsonengine.h
* =======================================================================
*
* 2021-6-29
* 499131808@qq.com
* Q Q 499131808
*
*
*
* ======================================================================
*
*
*
* ======================================================================
*
***************************************************************************/
#pragma once
#include <QJsonObject>
#include <QObject>
/**
* @brief The TiMapJsonEngine class
*/
class TiMapJsonEngine : public QObject
{
Q_OBJECT
public:
TiMapJsonEngine(const QString& path, QObject* parent = nullptr);
QString getToken(const QString& provide);
private:
QJsonObject m_jsonObj;
};