summaryrefslogtreecommitdiffstats
path: root/tests/auto/qsensor/test_sensorimpl.h
blob: 9d52e33faef55cb7259df67d646423b671e969eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef TEST_SENSORIMPL_H
#define TEST_SENSORIMPL_H

#include <qsensorbackend.h>
#include "test_sensor.h"

class testsensorimpl : public QSensorBackend
{
    Q_OBJECT
public:
    static const char *id;

    testsensorimpl(QSensor *sensor);
    ~testsensorimpl();

    void start() override;
    void stop() override;
    bool isFeatureSupported(QSensor::Feature feature) const override;

signals:
    void emitBusyChanged();

private:
    TestSensorReading m_reading;
};

#endif