1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef QPLACESEARCHSUGGESTIONREPLY_H
- #define QPLACESEARCHSUGGESTIONREPLY_H
- #include <QtLocation/QPlaceReply>
- #include <QtCore/QStringList>
- QT_BEGIN_NAMESPACE
- class QPlaceSearchSuggestionReplyPrivate;
- class Q_LOCATION_EXPORT QPlaceSearchSuggestionReply : public QPlaceReply
- {
- Q_OBJECT
- public:
- explicit QPlaceSearchSuggestionReply(QObject *parent = Q_NULLPTR);
- ~QPlaceSearchSuggestionReply();
- QStringList suggestions() const;
- Type type() const;
- protected:
- void setSuggestions(const QStringList &suggestions);
- private:
- Q_DISABLE_COPY(QPlaceSearchSuggestionReply)
- Q_DECLARE_PRIVATE(QPlaceSearchSuggestionReply)
- };
- QT_END_NAMESPACE
- #endif
|