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
qplaceproposedsearchresult.h
Go to the documentation of this file.
1// Copyright (C) 2013 Aaron McCarthy <mccarthy.aaron@gmail.com>
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 QPROPOSEDSEARCHRESULT_H
5#define QPROPOSEDSEARCHRESULT_H
6
7#include <QtLocation/QPlaceSearchResult>
8
9QT_BEGIN_NAMESPACE
10
11class QPlaceProposedSearchResultPrivate;
12
13class Q_LOCATION_EXPORT QPlaceProposedSearchResult : public QPlaceSearchResult
14{
15public:
16 QPlaceProposedSearchResult();
17
18#ifdef Q_QDOC
19 QPlaceProposedSearchResult(const QPlaceSearchRequest &other);
20#else
21 Q_DECLARE_SEARCHRESULT_COPY_CTOR(QPlaceProposedSearchResult)
22#endif
23
24 ~QPlaceProposedSearchResult();
25
26 QPlaceSearchRequest searchRequest() const;
27 void setSearchRequest(const QPlaceSearchRequest &request);
28
29private:
30 Q_DECLARE_SEARCHRESULT_D_FUNC(QPlaceProposedSearchResult)
31};
32
33Q_DECLARE_TYPEINFO(QPlaceProposedSearchResult, Q_RELOCATABLE_TYPE);
34
35QT_END_NAMESPACE
36
37#endif // QPROPOSEDSEARCHRESULT_H
bool compare(const QPlaceSearchResultPrivate *other) const override
Q_DECLARE_TYPEINFO(QByteArrayView, Q_PRIMITIVE_TYPE)
#define Q_IMPLEMENT_SEARCHRESULT_D_FUNC(Class)
#define Q_IMPLEMENT_SEARCHRESULT_COPY_CTOR(Class)