From 8fab6bcfc3ef9912852e916b852456327fba299f Mon Sep 17 00:00:00 2001 From: abcd Date: Thu, 2 Jun 2011 17:07:29 +1000 Subject: Initial dump of places --- src/location/places/qplacedetailsreply.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/location/places/qplacedetailsreply.h (limited to 'src/location/places/qplacedetailsreply.h') diff --git a/src/location/places/qplacedetailsreply.h b/src/location/places/qplacedetailsreply.h new file mode 100644 index 00000000..c52a9b63 --- /dev/null +++ b/src/location/places/qplacedetailsreply.h @@ -0,0 +1,29 @@ +#ifndef QPLACEDETAILSREPLY_H +#define QPLACEDETAILSREPLY_H + +#include "qplacereply.h" +#include "qplace.h" + +namespace QT_PLACES_NAMESPACE { + +class QPlaceDetailsReplyPrivate; +class Q_PLACES_EXPORT QPlaceDetailsReply : public QPlaceReply +{ + Q_OBJECT +public: + QPlaceDetailsReply(QObject *parent =0); + virtual ~QPlaceDetailsReply(); + + QPlaceReply::Type type() const; + + QPlace result() const; + +protected: + void setResult(const QPlace &result); +private: + QPlaceDetailsReplyPrivate *d; +}; + +} // QT_PLACES_NAMESPACE + +#endif // QPLACEDETAILSREPLY_H -- cgit v1.2.1