/**************************************************************************** ** ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt Mobility Components. ** ** $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$ ** ****************************************************************************/ #include "qgeoserviceproviderfactory.h" QT_BEGIN_NAMESPACE /*! \class QGeoServiceProviderFactory \brief The QGeoServiceProviderFactory class is a factory class used as the plugin interface for services related to geographical information. \inmodule QtLocation \since 1.1 \ingroup maps-impl Implementers must provide a unique combination of providerName() and providerVersion() per plugin. The other functions should be overridden if the plugin supports the associated set of functionality. */ /*! \fn QGeoServiceProviderFactory::~QGeoServiceProviderFactory() Destroys this QGeoServiceProviderFactory instance. */ /*! \fn QString QGeoServiceProviderFactory::providerName() const Returns the string used to identify the service provider behind this implementation. The combination of providerName() and providerVersion() should be unique amongst the plugins. */ /*! \fn int QGeoServiceProviderFactory::providerVersion() const Returns the version of the plugin. The combination of providerName() and providerVersion() should be unique amongst the plugins. */ /*! Returns a new QGeocodingManagerEngine instance, initialized with \a parameters, which implements the location geocoding functionality. If \a error is not 0 it should be set to QGeoServiceProvider::NoError on success or an appropriate QGeoServiceProvider::Error on failure. If \a errorString is not 0 it should be set to a string describing any error which occurred. The default implementation returns 0, which causes a QGeoServiceProvider::NotSupportedError in QGeoServiceProvider. */ QGeocodingManagerEngine* QGeoServiceProviderFactory::createGeocodingManagerEngine(const QMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const { Q_UNUSED(parameters) Q_UNUSED(error) Q_UNUSED(errorString) return 0; } /*! Returns a new QGeoMappingManagerEngine instance, initialized with \a parameters, which implements mapping functionality. If \a error is not 0 it should be set to QGeoServiceProvider::NoError on success or an appropriate QGeoServiceProvider::Error on failure. If \a errorString is not 0 it should be set to a string describing any error which occurred. The default implementation returns 0, which causes a QGeoServiceProvider::NotSupportedError in QGeoServiceProvider. */ QGeoMappingManagerEngine* QGeoServiceProviderFactory::createMappingManagerEngine(const QMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const { Q_UNUSED(parameters) Q_UNUSED(error) Q_UNUSED(errorString) return 0; } /*! Returns a new QGeoRoutingManagerEngine instance, initialized with \a parameters, which implements routing functionality. If \a error is not 0 it should be set to QGeoServiceProvider::NoError on success or an appropriate QGeoServiceProvider::Error on failure. If \a errorString is not 0 it should be set to a string describing any error which occurred. The default implementation returns 0, which causes a QGeoServiceProvider::NotSupportedError in QGeoServiceProvider. */ QGeoRoutingManagerEngine* QGeoServiceProviderFactory::createRoutingManagerEngine(const QMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const { Q_UNUSED(parameters) Q_UNUSED(error) Q_UNUSED(errorString) return 0; } /*! Returns a new QPlaceManagerEngine instance, initialized with \a parameters, which implements the place searching functionality. If \a error is not 0 it should be set to QGeoServiceProvider::NoError on success or an appropriate QGeoServiceProvider::Error on failure. If \a errorString is not 0 it should be set to a string describing any error which occurred. The default implementation returns 0, which causes a QGeoServiceProvider::NotSupportedError in QGeoServiceProvider. */ QPlaceManagerEngine* QGeoServiceProviderFactory::createPlaceManagerEngine(const QMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const { Q_UNUSED(parameters) Q_UNUSED(error) Q_UNUSED(errorString) return 0; } QT_END_NAMESPACE