~ubuntu-branches/ubuntu/trusty/qtubuntu-sensors/trusty

« back to all changes in this revision

Viewing changes to plugins/sensors/core_sensor_plugins.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-01-08 17:17:24 UTC
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: package-import@ubuntu.com-20140108171724-177zeelodrmtchnd
Tags: upstream-0.6+14.04.20140108.2
ImportĀ upstreamĀ versionĀ 0.6+14.04.20140108.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include "core_accelerometer.h"
 
18
#include "core_orientation_sensor.h"
 
19
#include "core_sensor_plugins.h"
 
20
 
 
21
#include <qsensorplugin.h>
 
22
#include <qsensorbackend.h>
 
23
#include <qsensormanager.h>
 
24
#include <QAccelerometer>
 
25
#include <QOrientationSensor>
 
26
 
 
27
void core::SensorPlugins::registerSensors()
 
28
{
 
29
    QSensorManager::registerBackend(
 
30
                QOrientationSensor::type,
 
31
                core::OrientationSensor::id(),
 
32
                this);
 
33
 
 
34
    QSensorManager::registerBackend(
 
35
                QAccelerometer::type,
 
36
                core::Accelerometer::id(),
 
37
                this);
 
38
}
 
39
 
 
40
// Instantiate all sensor backends here:
 
41
QSensorBackend* core::SensorPlugins::createBackend(QSensor *sensor)
 
42
{
 
43
    if (sensor->identifier() == core::OrientationSensor::id())
 
44
        return new core::OrientationSensor(sensor);
 
45
 
 
46
    if (sensor->identifier() == core::Accelerometer::id())
 
47
        return new core::Accelerometer(sensor);
 
48
 
 
49
    return NULL;
 
50
}