Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
georoutereply_esri.h
Go to the documentation of this file.
1// Copyright (C) 2013-2018 Esri <contracts@esri.com>
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef GEOROUTEREPLYESRI_H
5#define GEOROUTEREPLYESRI_H
6
7#include <QNetworkReply>
8#include <QGeoRouteReply>
9
10QT_BEGIN_NAMESPACE
11
12class GeoRouteReplyEsri : public QGeoRouteReply
13{
14 Q_OBJECT
15
16public:
17 GeoRouteReplyEsri(QNetworkReply *reply, const QGeoRouteRequest &request, QObject *parent = nullptr);
18 ~GeoRouteReplyEsri();
19
20private Q_SLOTS:
21 void networkReplyFinished();
22 void networkReplyError(QNetworkReply::NetworkError error);
23};
24
25QT_END_NAMESPACE
26
27#endif // GEOROUTEREPLYESRI_H
The QNetworkReply class contains the data and headers for a request sent with QNetworkAccessManager.