summaryrefslogtreecommitdiffstats
path: root/tests/auto/sensors2qmlapi/qbackends.h
diff options
context:
space:
mode:
authorLincoln Ramsay <lincoln.ramsay@nokia.com>2012-03-14 16:33:19 +1000
committerQt by Nokia <qt-info@nokia.com>2012-03-16 08:02:30 +0100
commit8d25a4a58c47431c589d8cbbc82e442360cf7e63 (patch)
tree14d4c0f123e602e8528298346f72df5debd2936c /tests/auto/sensors2qmlapi/qbackends.h
parentb6d87d1b5141987452bc30e8b1d4115998ba6fd9 (diff)
Use the new plugin mechanism for Sensors and SensorGestures
Plugins no longer use QFactoryInterface or Q_EXPORT_PLUGIN. Instead, Q_PLUGIN_METADATA is used. Meta-data is provided through a .json file that is embedded into the plugin by moc. For now, this meta-data is not actually used because both sensors and gestures use a dynamic registration mechanism. Change-Id: Ic82657e2ba5768127e13f7411ca51f60772781d8 Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com>
Diffstat (limited to 'tests/auto/sensors2qmlapi/qbackends.h')
-rw-r--r--tests/auto/sensors2qmlapi/qbackends.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/sensors2qmlapi/qbackends.h b/tests/auto/sensors2qmlapi/qbackends.h
index 90cc2562..368de18a 100644
--- a/tests/auto/sensors2qmlapi/qbackends.h
+++ b/tests/auto/sensors2qmlapi/qbackends.h
@@ -55,7 +55,8 @@ class TestSensorPlugin : public QObject,
public QSensorBackendFactory
{
Q_OBJECT
- Q_INTERFACES(QSensorPluginInterface:QFactoryInterface QSensorChangesInterface)
+ //Q_PLUGIN_METADATA(IID "com.nokia.Qt.QSensorPluginInterface/1.0" FILE "plugin.json")
+ Q_INTERFACES(QSensorPluginInterface QSensorChangesInterface)
public:
void registerSensors()
{
@@ -95,7 +96,6 @@ public:
qWarning() << "Can't create backend" << sensor->identifier();
return 0;
}
- QStringList keys() const { return QStringList() << "test";}
public:
static QDeclAccelerometer* stAccel;
static QDeclAmbientLightSensor* stAbl;