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
qplacesearchsuggestionreply.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 QPLACESEARCHSUGGESTIONREPLY_H
5#define QPLACESEARCHSUGGESTIONREPLY_H
6
7#include <QtLocation/QPlaceReply>
8
9#include <QtCore/QStringList>
10
11QT_BEGIN_NAMESPACE
12
13class QPlaceSearchSuggestionReplyPrivate;
14
15class Q_LOCATION_EXPORT QPlaceSearchSuggestionReply : public QPlaceReply
16{
17 Q_OBJECT
18public:
19 explicit QPlaceSearchSuggestionReply(QObject *parent = nullptr);
20 ~QPlaceSearchSuggestionReply();
21
22 QStringList suggestions() const;
23 Type type() const override;
24
25protected:
26 void setSuggestions(const QStringList &suggestions);
27
28private:
29 Q_DISABLE_COPY(QPlaceSearchSuggestionReply)
30 Q_DECLARE_PRIVATE(QPlaceSearchSuggestionReply)
31};
32
33QT_END_NAMESPACE
34
35#endif
\inmodule QtLocation
\inmodule QtLocation