sensorfw
tapsensor_a.h
Go to the documentation of this file.
1
27#ifndef TAP_SENSOR_H
28#define TAP_SENSOR_H
29
30#include <QtDBus/QtDBus>
31#include <QObject>
32
33#include "abstractsensor_a.h"
34#include "tap.h"
35
36class TapSensorChannelAdaptor : public AbstractSensorChannelAdaptor
37{
38 Q_OBJECT
39 Q_DISABLE_COPY(TapSensorChannelAdaptor)
40 Q_CLASSINFO("D-Bus Interface", "local.TapSensor")
41
42public:
43 TapSensorChannelAdaptor(QObject* parent);
44
45Q_SIGNALS:
46 void dataAvailable(const Tap& tap);
47};
48
49#endif
void dataAvailable(const Tap &tap)
TapSensorChannelAdaptor(QObject *parent)
QObject facade for TapData.
Definition: tap.h:37
QObject based datatype for TapData.