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