summaryrefslogtreecommitdiff
path: root/src/location/places/qplacealternativevalue_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/qplacealternativevalue_p.h
parent1dd8b4805d108931a41eb2d58874a598281ee2c4 (diff)
downloadqtlocation-8fab6bcfc3ef9912852e916b852456327fba299f.tar.gz
Initial dump of places
Diffstat (limited to 'src/location/places/qplacealternativevalue_p.h')
-rw-r--r--src/location/places/qplacealternativevalue_p.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/location/places/qplacealternativevalue_p.h b/src/location/places/qplacealternativevalue_p.h
new file mode 100644
index 00000000..8a92f56e
--- /dev/null
+++ b/src/location/places/qplacealternativevalue_p.h
@@ -0,0 +1,30 @@
+#ifndef QPLACEALTERNATIVEVALUE_P_H
+#define QPLACEALTERNATIVEVALUE_P_H
+
+#include <QString>
+#include <QSharedData>
+
+#include "qplacealternativevalue.h"
+
+namespace QT_PLACES_NAMESPACE {
+
+class QPlaceAlternativeValuePrivate : public QSharedData
+{
+public:
+ QPlaceAlternativeValuePrivate();
+ QPlaceAlternativeValuePrivate(const QPlaceAlternativeValuePrivate &other);
+
+ ~QPlaceAlternativeValuePrivate();
+
+ bool operator==(const QPlaceAlternativeValuePrivate &other) const;
+
+ QString key;
+ QString language;
+ QPlaceAlternativeValue::TextSemantics semantics;
+ QPlaceAlternativeValue::NameType type;
+ QString value;
+};
+
+} // QT_PLACES_NAMESPACE
+
+#endif // QPLACEALTERNATIVEVALUE_P_H