summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/winrt/winrtambientlightsensor.h
blob: 160d7474c12b7e506a52bbaaad4de6c76f00480a (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef WINRTAMBIENTLIGHTSENSOR_H
#define WINRTAMBIENTLIGHTSENSOR_H

#include <QtSensors/QSensorBackend>
#include <QtCore/QScopedPointer>

QT_USE_NAMESPACE

class WinRtAmbientLightSensorPrivate;
class WinRtAmbientLightSensor : public QSensorBackend
{
    Q_OBJECT
public:
    WinRtAmbientLightSensor(QSensor *sensor);
    ~WinRtAmbientLightSensor();

    void start() override;
    void stop() override;

private:
    QScopedPointer<WinRtAmbientLightSensorPrivate> d_ptr;
    Q_DECLARE_PRIVATE(WinRtAmbientLightSensor)
};

#endif // WINRTAMBIENTLIGHTSENSOR_H