sensorfw
|
00001 00027 #ifndef TAP_SENSOR_H 00028 #define TAP_SENSOR_H 00029 00030 #include <QtDBus/QtDBus> 00031 #include <QObject> 00032 00033 #include "abstractsensor_a.h" 00034 #include "tap.h" 00035 00036 class TapSensorChannelAdaptor : public AbstractSensorChannelAdaptor 00037 { 00038 Q_OBJECT 00039 Q_DISABLE_COPY(TapSensorChannelAdaptor) 00040 Q_CLASSINFO("D-Bus Interface", "local.TapSensor") 00041 00042 public: 00043 TapSensorChannelAdaptor(QObject* parent); 00044 00045 Q_SIGNALS: 00046 void dataAvailable(const Tap& tap); 00047 }; 00048 00049 #endif