summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/android/androidlight.h
blob: 59c67981948bf34f9e4bab366265778989d4a8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2019 BogDan Vatra <bogdan@kde.org>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef ANDROIDLIGHT_H
#define ANDROIDLIGHT_H

#include <qlightsensor.h>

#include "sensoreventqueue.h"

class AndroidLight : public SensorEventQueue<QLightReading>
{
public:
    AndroidLight(int type, QSensor *sensor, QObject *parent = nullptr);

protected:
    // SensorEventQueue interface
    void dataReceived(const ASensorEvent &event) override;
};

#endif // ANDROIDLIGHT_H