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
qgeocodereply_nokia.h
Go to the documentation of this file.
1// Copyright (C) 2015 The Qt Company Ltd.
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 QGEOCODEREPLY_NOKIA_H
5#define QGEOCODEREPLY_NOKIA_H
6
7#include <qgeocodereply.h>
8#include <QNetworkReply>
9
11
13{
15public:
17 bool manualBoundsRequired, QObject *parent = nullptr);
19
20private Q_SLOTS:
21 void networkFinished();
22 void networkError(QNetworkReply::NetworkError error);
23 void appendResults(const QList<QGeoLocation> &locations);
24 void parseError(const QString &errorString);
25
26private:
27 bool m_parsing;
28 bool m_manualBoundsRequired;
29};
30
31QT_END_NAMESPACE
32
33#endif