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.
20 lines
390 B
C++
20 lines
390 B
C++
#pragma once
|
|
#include <QGeoCodeReply>
|
|
#include <QNetworkReply>
|
|
|
|
class TiQGeoCodeReply : public QGeoCodeReply
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TiQGeoCodeReply(QNetworkReply* reply, QObject* parent = nullptr);
|
|
~TiQGeoCodeReply();
|
|
|
|
private slots:
|
|
void networkReplyFinish();
|
|
void networkReplyError(QNetworkReply::NetworkError error);
|
|
|
|
private:
|
|
QNetworkReply* m_reply;
|
|
};
|
|
|