diff options
author | abcd <qt-info@nokia.com> | 2011-06-02 17:07:29 +1000 |
---|---|---|
committer | abcd <qt-info@nokia.com> | 2011-06-02 17:28:32 +1000 |
commit | 8fab6bcfc3ef9912852e916b852456327fba299f (patch) | |
tree | d652f611c06e9f35ea8aeaa353d1674535747e99 /src/location/places/qplacedetailsreply.h | |
parent | 1dd8b4805d108931a41eb2d58874a598281ee2c4 (diff) | |
download | qtlocation-8fab6bcfc3ef9912852e916b852456327fba299f.tar.gz |
Initial dump of places
Diffstat (limited to 'src/location/places/qplacedetailsreply.h')
-rw-r--r-- | src/location/places/qplacedetailsreply.h | 29 |
1 files changed, 29 insertions, 0 deletions
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 |