summaryrefslogtreecommitdiffstats
path: root/src/sensors/qsensorpluginloader.cpp
diff options
context:
space:
mode:
authorLincoln Ramsay <lincoln.ramsay@nokia.com>2012-03-14 16:13:46 +1000
committerQt by Nokia <qt-info@nokia.com>2012-03-16 08:02:18 +0100
commitb6d87d1b5141987452bc30e8b1d4115998ba6fd9 (patch)
tree46134634d89e907c011be2512cca33b0cd0850ab /src/sensors/qsensorpluginloader.cpp
parent1530ebcc019bf6c630e75ac3078586b70c6056e3 (diff)
Remove QSensorPluginLoader
This class does virtually nothing except to hide the use of QFactoryLoader from QSensorManager. Change-Id: I70e791f9d842102204fd970e7806f409ae1eca65 Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com>
Diffstat (limited to 'src/sensors/qsensorpluginloader.cpp')
-rw-r--r--src/sensors/qsensorpluginloader.cpp96
1 files changed, 0 insertions, 96 deletions
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 <QtCore/qcoreapplication.h>
-#include <QtCore/qdir.h>
-#include <QtCore/qdebug.h>
-#include <QtCore/private/qfactoryloader_p.h>
-
-#include "qsensorplugin.h"
-
-QT_BEGIN_NAMESPACE
-
-
-QSensorPluginLoader::QSensorPluginLoader()
-{
- m_loader = new QFactoryLoader(QSensorFactoryInterface_iid, QLatin1String("/sensors"));
- load();
-}
-
-QSensorPluginLoader::~QSensorPluginLoader()
-{
- //delete m_loader;
-}
-
-QList<QObject*> 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<QSensorPluginInterface*>(o);
- if (p != 0) {
- m_plugins << o;
- } else {
- if (reportErrors) {
- qWarning() << key << "is not a QSensorPluginInterface";
- }
- }
-
- continue;
- }
- }
-}
-
-QT_END_NAMESPACE
-