summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'addon/doxywizard/input.h')
-rw-r--r--addon/doxywizard/input.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/addon/doxywizard/input.h b/addon/doxywizard/input.h
new file mode 100644
index 0000000..ab9bcf5
--- /dev/null
+++ b/addon/doxywizard/input.h
@@ -0,0 +1,14 @@
+#ifndef _INPUT_H
+#define _INPUT_H
+
+class QObject;
+
+class IInput
+{
+ public:
+ virtual void init() = 0;
+ virtual void setEnabled(bool) = 0;
+ virtual QObject *qobject() = 0;
+};
+
+#endif