// Copyright (C) 2019 BogDan Vatra // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef ANDROIDPRESSURE_H #define ANDROIDPRESSURE_H #include #include "sensoreventqueue.h" class AndroidPressure : public SensorEventQueue { public: AndroidPressure(int type, QSensor *sensor, QObject *parent = nullptr); protected: // SensorEventQueue interface void dataReceived(const ASensorEvent &event) override; }; #endif // ANDROIDPRESSURE_H