summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/esri/georoutereply_esri.h
blob: 04f565194e3177f17b21b44fa8c06750b30f1975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (C) 2013-2018 Esri <contracts@esri.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef GEOROUTEREPLYESRI_H
#define GEOROUTEREPLYESRI_H

#include <QNetworkReply>
#include <QGeoRouteReply>

QT_BEGIN_NAMESPACE

class GeoRouteReplyEsri : public QGeoRouteReply
{
    Q_OBJECT

public:
    GeoRouteReplyEsri(QNetworkReply *reply, const QGeoRouteRequest &request, QObject *parent = nullptr);
    ~GeoRouteReplyEsri();

private Q_SLOTS:
    void networkReplyFinished();
    void networkReplyError(QNetworkReply::NetworkError error);
};

QT_END_NAMESPACE

#endif // GEOROUTEREPLYESRI_H