gazetk / GazeTkHub / Plugins / DeviceEyetrackerTobii / deviceeyetrackertobii.h @ 2eb54f9d
History | View | Annotate | Download (551 Bytes)
| 1 |
#ifndef DEVICEEYETRACKERTOBII_H
|
|---|---|
| 2 |
#define DEVICEEYETRACKERTOBII_H
|
| 3 |
|
| 4 |
#include "gazetkinterfaces.h" |
| 5 |
|
| 6 |
namespace gazetk |
| 7 |
{
|
| 8 |
namespace plugins |
| 9 |
{
|
| 10 |
|
| 11 |
class DeviceEyetrackerTobii : public QObject, gazetk::PluginInterface |
| 12 |
{
|
| 13 |
Q_OBJECT |
| 14 |
Q_INTERFACES(gazetk::PluginInterface) |
| 15 |
Q_PLUGIN_METADATA(IID "com.eyemovementresearch.gazetk.PluginInterface" FILE "DeviceEyetrackerTobii.json") |
| 16 |
|
| 17 |
public: |
| 18 |
DeviceEyetrackerTobii(QObject *parent = 0);
|
| 19 |
|
| 20 |
virtual void postMessage() {}
|
| 21 |
}; |
| 22 |
|
| 23 |
} // namespace plugins
|
| 24 |
|
| 25 |
} // namespace gazetk
|
| 26 |
|
| 27 |
|
| 28 |
#endif // DEVICEEYETRACKERTOBII_H |