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
qplacedetailsreply.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// Qt-Security score:significant reason:default
4
5#ifndef QPLACEDETAILSREPLY_H
6#define QPLACEDETAILSREPLY_H
7
8#include <QtLocation/QPlaceReply>
9
10QT_BEGIN_NAMESPACE
11
12class QPlace;
14class Q_LOCATION_EXPORT QPlaceDetailsReply : public QPlaceReply
15{
16 Q_OBJECT
17public:
18 explicit QPlaceDetailsReply(QObject *parent = nullptr);
19 virtual ~QPlaceDetailsReply();
20
21 QPlaceReply::Type type() const override;
22
23 QPlace place() const;
24
25protected:
26 void setPlace(const QPlace &place);
27
28private:
29 Q_DISABLE_COPY(QPlaceDetailsReply)
30 Q_DECLARE_PRIVATE(QPlaceDetailsReply)
31};
32
33QT_END_NAMESPACE
34
35#endif // QPLACEDETAILSREPLY_H
\inmodule QtLocation
Combined button and popup list for selecting options.