summaryrefslogtreecommitdiff
path: root/src/location/places/qplacedetailsreply.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/location/places/qplacedetailsreply.h')
-rw-r--r--src/location/places/qplacedetailsreply.h29
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