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
qplacesearchsuggestionreplyimpl.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 QPLACESEARCHSUGGESTIONREPLYIMPL_H
5#define QPLACESEARCHSUGGESTIONREPLYIMPL_H
6
7#include <QtNetwork/QNetworkReply>
8#include <QtLocation/QPlaceSearchSuggestionReply>
9
10QT_BEGIN_NAMESPACE
11
12class QPlaceSearchSuggestionReplyImpl : public QPlaceSearchSuggestionReply
13{
14 Q_OBJECT
15
16public:
17 explicit QPlaceSearchSuggestionReplyImpl(QNetworkReply *reply, QObject *parent = nullptr);
18 ~QPlaceSearchSuggestionReplyImpl();
19
20private slots:
21 void setError(QPlaceReply::Error error_, const QString &errorString);
22 void replyFinished();
23 void replyError(QNetworkReply::NetworkError error);
24};
25
26QT_END_NAMESPACE
27
28#endif // QPLACESEARCHSUGGESTIONREPLYIMPL_H
The QNetworkReply class contains the data and headers for a request sent with QNetworkAccessManager.
QObject * parent
Definition qobject.h:73