summaryrefslogtreecommitdiff
path: root/src/location/places/qplacesupplier_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/qplacesupplier_p.h
parent1dd8b4805d108931a41eb2d58874a598281ee2c4 (diff)
downloadqtlocation-8fab6bcfc3ef9912852e916b852456327fba299f.tar.gz
Initial dump of places
Diffstat (limited to 'src/location/places/qplacesupplier_p.h')
-rw-r--r--src/location/places/qplacesupplier_p.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/location/places/qplacesupplier_p.h b/src/location/places/qplacesupplier_p.h
new file mode 100644
index 00000000..dbbd2efb
--- /dev/null
+++ b/src/location/places/qplacesupplier_p.h
@@ -0,0 +1,29 @@
+#ifndef QPLACESUPPLIER_P_H
+#define QPLACESUPPLIER_P_H
+
+#include <QString>
+#include <QSharedData>
+
+#include "qplacesupplier.h"
+
+namespace QT_PLACES_NAMESPACE {
+
+class QPlaceSupplierPrivate : public QSharedData
+{
+public:
+ QPlaceSupplierPrivate();
+ QPlaceSupplierPrivate(const QPlaceSupplierPrivate &other);
+
+ ~QPlaceSupplierPrivate();
+
+ bool operator==(const QPlaceSupplierPrivate &other) const;
+
+ QString name;
+ QString supplierId;
+ QString url;
+ QString supplierIconURL;
+};
+
+} // QT_PLACES_NAMESPACE
+
+#endif // QPLACESUPPLIER_P_H