From b6d87d1b5141987452bc30e8b1d4115998ba6fd9 Mon Sep 17 00:00:00 2001 From: Lincoln Ramsay Date: Wed, 14 Mar 2012 16:13:46 +1000 Subject: Remove QSensorPluginLoader This class does virtually nothing except to hide the use of QFactoryLoader from QSensorManager. Change-Id: I70e791f9d842102204fd970e7806f409ae1eca65 Reviewed-by: Lincoln Ramsay --- src/sensors/qsensorpluginloader.cpp | 96 ------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 src/sensors/qsensorpluginloader.cpp (limited to 'src/sensors/qsensorpluginloader.cpp') diff --git a/src/sensors/qsensorpluginloader.cpp b/src/sensors/qsensorpluginloader.cpp deleted file mode 100644 index 25fce3eb..00000000 --- a/src/sensors/qsensorpluginloader.cpp +++ /dev/null @@ -1,96 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/ -** -** This file is part of the QtSensors 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$ -** -****************************************************************************/ - -#include "qsensorpluginloader_p.h" -#include -#include -#include -#include - -#include "qsensorplugin.h" - -QT_BEGIN_NAMESPACE - - -QSensorPluginLoader::QSensorPluginLoader() -{ - m_loader = new QFactoryLoader(QSensorFactoryInterface_iid, QLatin1String("/sensors")); - load(); -} - -QSensorPluginLoader::~QSensorPluginLoader() -{ - //delete m_loader; -} - -QList QSensorPluginLoader::plugins() const -{ - return m_plugins; -} - -void QSensorPluginLoader::load() -{ - if (!m_plugins.isEmpty()) - return; - - bool reportErrors = (qgetenv("QT_DEBUG_PLUGINS") == "1"); - - /* Now discover the dynamic plugins */ - foreach (const QString &key, m_loader->keys()) { - - QObject *o = m_loader->instance(key); - if (o != 0) { - QSensorPluginInterface *p = qobject_cast(o); - if (p != 0) { - m_plugins << o; - } else { - if (reportErrors) { - qWarning() << key << "is not a QSensorPluginInterface"; - } - } - - continue; - } - } -} - -QT_END_NAMESPACE - -- cgit v1.2.3