summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeotiledmapreply_p_p.h
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2012-06-06 09:19:09 +1000
committerQt by Nokia <qt-info@nokia.com>2012-06-07 03:05:34 +0200
commit5e8bdd51c889403db99d0dbad908b6e862252a70 (patch)
tree7dc34fce9b8996b8a380d7719b28dee9842ef5f9 /src/location/maps/qgeotiledmapreply_p_p.h
parent702a9d73fa145fd107c8a3f03d68d93b6968af77 (diff)
downloadqtlocation-5e8bdd51c889403db99d0dbad908b6e862252a70.tar.gz
Remove Maps from public C++ API.
The preliminary C++ Maps API was exposed to provide an interface between the QML plugin and the geo services plugins. Mark it as private API for now as it is likely to change when the full C++ API is developed. Mapping functionality is currently only available through QML. Change-Id: Id16e0f1a2165c70192047dffa40e69ab1f29ba69 Reviewed-by: Alex Wilson <alex.wilson@nokia.com>
Diffstat (limited to 'src/location/maps/qgeotiledmapreply_p_p.h')
-rw-r--r--src/location/maps/qgeotiledmapreply_p_p.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/src/location/maps/qgeotiledmapreply_p_p.h b/src/location/maps/qgeotiledmapreply_p_p.h
new file mode 100644
index 00000000..62cebb7f
--- /dev/null
+++ b/src/location/maps/qgeotiledmapreply_p_p.h
@@ -0,0 +1,80 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/
+**
+** This file is part of the QtLocation module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QGEOTILEDMAPREPLY_P_H
+#define QGEOTILEDMAPREPLY_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include "qgeotiledmapreply_p.h"
+#include "qgeotilespec_p.h"
+
+QT_BEGIN_NAMESPACE
+
+class QGeoTiledMapReplyPrivate
+{
+public:
+ QGeoTiledMapReplyPrivate(const QGeoTileSpec &spec);
+ QGeoTiledMapReplyPrivate(QGeoTiledMapReply::Error error, const QString &errorString);
+ ~QGeoTiledMapReplyPrivate();
+
+ QGeoTiledMapReply::Error error;
+ QString errorString;
+ bool isFinished;
+ bool isCached;
+
+ QGeoTileSpec spec;
+ QByteArray mapImageData;
+ QString mapImageFormat;
+};
+
+QT_END_NAMESPACE
+
+#endif