[Marble-commits] branches/KDE/4.5/kdeedu/marble/src
Bastian Holst
bastianholst at gmx.de
Thu Jul 8 22:47:00 CEST 2010
SVN commit 1147614 by bholst:
Adding comments to GeoDataAccuracy.
backport r1147612
M +12 -0 lib/geodata/data/GeoDataAccuracy.h
M +10 -0 plugins/positionprovider/geoclue/GeoCute/Accuracy.h
--- branches/KDE/4.5/kdeedu/marble/src/lib/geodata/data/GeoDataAccuracy.h #1147613:1147614
@@ -6,6 +6,7 @@
// the source code.
//
// Copyright 2009 Eckhart Wörner <ewoerner at kde.org>
+// Copyright 2010 Bastian Holst <bastianholst at gmx.de>
//
#ifndef MARBLE_GEODATAACCURACY_H
@@ -21,6 +22,9 @@
class GeoDataAccuracy
{
public:
+ /**
+ * @brief Approximate descriptive accuracy.
+ */
enum Level {
none = 0,
Country,
@@ -30,7 +34,15 @@
Street,
Detailed
} level;
+
+ /**
+ * @brief Horizontal accuracy in meters.
+ */
qreal horizontal;
+
+ /**
+ * @brief Vertical accuracy in meters.
+ */
qreal vertical;
};
--- branches/KDE/4.5/kdeedu/marble/src/plugins/positionprovider/geoclue/GeoCute/Accuracy.h #1147613:1147614
@@ -6,6 +6,7 @@
// the source code.
//
// Copyright 2009 Eckhart Wörner <ewoerner at kde.org>
+// Copyright 2010 Bastian Holst <bastianholst at gmx.de>
//
#ifndef GEOCUTE_ACCURACY_H
@@ -25,8 +26,17 @@
class Accuracy
{
public:
+ /**
+ * @brief Approximate descriptive accuracy.
+ */
AccuracyLevel level;
+ /**
+ * @brief Horizontal accuracy in meters.
+ */
qreal horizontal;
+ /**
+ * @brief Vertical accuracy in meters.
+ */
qreal vertical;
};
More information about the Marble-commits
mailing list