sensorfw
wristgesturesensor_a.h
Go to the documentation of this file.
29#ifndef WRISTGESTURE_SENSOR_H
30#define WRISTGESTURE_SENSOR_H
31
32#include <QtDBus/QtDBus>
33
34#include "datatypes/unsigned.h"
35#include "abstractsensor_a.h"
36
37class WristGestureSensorChannelAdaptor : public AbstractSensorChannelAdaptor
38{
39 Q_OBJECT
41 Q_CLASSINFO("D-Bus Interface", "local.WristGestureSensor")
42 Q_PROPERTY(Unsigned wristgesture READ wristgesture)
43 Q_PROPERTY(int threshold READ threshold WRITE setThreshold)
44
45public:
47
48public Q_SLOTS:
50 int threshold() const;
51 void setThreshold(int value);
52
53Q_SIGNALS:
55};
56
57#endif
QObject facae for TimedUnsigned.
Definition: unsigned.h:37
void wristgestureChanged(const Unsigned &wristgesture)
WristGestureSensorChannelAdaptor(QObject *parent)
QObject based datatype for TimedUnsigned.