// Copyright (C) 2016 Aaron McCarthy // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QGEOROUTEREPLYOSM_H #define QGEOROUTEREPLYOSM_H #include #include QT_BEGIN_NAMESPACE class QGeoRouteReplyOsm : public QGeoRouteReply { Q_OBJECT public: QGeoRouteReplyOsm(QNetworkReply *reply, const QGeoRouteRequest &request, QObject *parent = nullptr); ~QGeoRouteReplyOsm(); private Q_SLOTS: void networkReplyFinished(); void networkReplyError(QNetworkReply::NetworkError error); }; QT_END_NAMESPACE #endif // QGEOROUTEREPLYOSM_H