summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/modules/executor/aktuator.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Concept/Framework/modules/executor/aktuator.h')
-rwxr-xr-xsource/Concept/Framework/modules/executor/aktuator.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/source/Concept/Framework/modules/executor/aktuator.h b/source/Concept/Framework/modules/executor/aktuator.h
new file mode 100755
index 0000000..9dc8684
--- /dev/null
+++ b/source/Concept/Framework/modules/executor/aktuator.h
@@ -0,0 +1,27 @@
+#ifndef _AKTUATOR_H
+#define _AKTUATOR_H
+
+#include "../../stdafx.h"
+
+class Aktuator : public IO_Module
+{
+public:
+ Aktuator()
+ {
+ this->parent = NULL;
+ this->moduleId = 0;
+ }
+
+ Aktuator(uint32 aktuatorId)
+ {
+ this->parent = NULL;
+ this->moduleId = aktuatorId;
+ }
+
+protected:
+
+public:
+ void Kick();
+};
+
+#endif