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
qplacematchreply.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 QPLACEMATCHREPLY_H
5#define QPLACEMATCHREPLY_H
6
7#include <QtLocation/QPlaceReply>
8
10
11class QPlace;
12class QPlaceMatchRequest;
14class Q_LOCATION_EXPORT QPlaceMatchReply : public QPlaceReply
15{
16 Q_OBJECT
17public:
18 explicit QPlaceMatchReply(QObject *parent = nullptr);
19 ~QPlaceMatchReply();
20
21 QPlaceReply::Type type() const override;
22
23 QList<QPlace> places() const;
24 QPlaceMatchRequest request() const;
25
26protected:
27 void setPlaces(const QList<QPlace> &results);
28 void setRequest(const QPlaceMatchRequest &request);
29private:
30 Q_DISABLE_COPY(QPlaceMatchReply)
31 Q_DECLARE_PRIVATE(QPlaceMatchReply)
32};
33
34QT_END_NAMESPACE
35
36#endif
\inmodule QtLocation
\inmodule QtLocation