summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/winrt/winrtaccelerometer.h
blob: 96b0f09334db39387b43cebcb5c426ecaae5ba7f (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 WINRTACCELEROMETER_H
#define WINRTACCELEROMETER_H

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

QT_USE_NAMESPACE

class WinRtAccelerometerPrivate;
class WinRtAccelerometer : public QSensorBackend
{
    Q_OBJECT
public:
    WinRtAccelerometer(QSensor *sensor);
    ~WinRtAccelerometer();

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

private:
    QScopedPointer<WinRtAccelerometerPrivate> d_ptr;
    Q_DECLARE_PRIVATE(WinRtAccelerometer)
};

#endif // WINRTACCELEROMETER_H