summaryrefslogtreecommitdiff
path: root/src/location/places/qplacereview_p.h
diff options
context:
space:
mode:
authorabcd <qt-info@nokia.com>2011-06-02 17:07:29 +1000
committerabcd <qt-info@nokia.com>2011-06-02 17:28:32 +1000
commit8fab6bcfc3ef9912852e916b852456327fba299f (patch)
treed652f611c06e9f35ea8aeaa353d1674535747e99 /src/location/places/qplacereview_p.h
parent1dd8b4805d108931a41eb2d58874a598281ee2c4 (diff)
downloadqtlocation-8fab6bcfc3ef9912852e916b852456327fba299f.tar.gz
Initial dump of places
Diffstat (limited to 'src/location/places/qplacereview_p.h')
-rw-r--r--src/location/places/qplacereview_p.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/location/places/qplacereview_p.h b/src/location/places/qplacereview_p.h
new file mode 100644
index 00000000..f0cf6160
--- /dev/null
+++ b/src/location/places/qplacereview_p.h
@@ -0,0 +1,37 @@
+#ifndef QPLACEREVIEW_P_H
+#define QPLACEREVIEW_P_H
+
+#include <QSharedData>
+
+#include "qplacereview.h"
+
+namespace QT_PLACES_NAMESPACE {
+
+class QPlaceReviewPrivate : public QSharedData
+{
+public:
+ QPlaceReviewPrivate();
+ QPlaceReviewPrivate(const QPlaceReviewPrivate &other);
+
+ ~QPlaceReviewPrivate();
+
+ bool operator==(const QPlaceReviewPrivate &other) const;
+
+ QString date;
+ QString description;
+ QString language;
+ uint helpfulVotings;
+ QStringList mediaIds;
+ uint notHelpfulVotings;
+ double rating;
+ QString reviewId;
+ QPlaceSupplier supplier;
+ QString title;
+ QString userId;
+ QString userName;
+ QString originatorURL;
+};
+
+} // QT_PLACES_NAMESPACE
+
+#endif // QPLACEREVIEW_P_H