You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920
  1. #ifndef INPUTMANAGER_H
  2. #define INPUTMANAGER_H
  3. #include <QObject>
  4. #include <QVariant>
  5. class InputManager : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. InputManager(QObject* parent = 0);
  10. virtual ~InputManager();
  11. public slots:
  12. virtual bool init(const QVariant& device) = 0;
  13. virtual QVariant read(const QVariant& channel) = 0;
  14. };
  15. #endif // INPUTMANAGER_H