summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/esri/geotiledmapreply_esri.h
blob: f45c4ca8d43d0b247806a88d93458ab3330506b6 (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
28
// 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 GEOTILEDMAPREPLYESRI_H
#define GEOTILEDMAPREPLYESRI_H

#include <QNetworkReply>

#include <QtLocation/private/qgeotiledmapreply_p.h>

QT_BEGIN_NAMESPACE

class GeoTiledMapReplyEsri : public QGeoTiledMapReply
{
    Q_OBJECT

public:
    GeoTiledMapReplyEsri(QNetworkReply *reply, const QGeoTileSpec &spec, QObject *parent = nullptr);
    ~GeoTiledMapReplyEsri();

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

QT_END_NAMESPACE

#endif // GEOTILEDMAPREPLYESRI_H