summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdAttention.h
diff options
context:
space:
mode:
Diffstat (limited to 'CommandTerminal/CmdAttention.h')
-rw-r--r--CommandTerminal/CmdAttention.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/CommandTerminal/CmdAttention.h b/CommandTerminal/CmdAttention.h
new file mode 100644
index 0000000..76fd1d2
--- /dev/null
+++ b/CommandTerminal/CmdAttention.h
@@ -0,0 +1,17 @@
+#ifndef __CMDATTENTION_H__
+#define __CMDATTENTION_H__
+
+#include "Command.h"
+
+class CmdAttention : public Command {
+
+public:
+
+ CmdAttention(mDot* dot);
+ CmdAttention(mDot* dot, const char* name, const char* text, const char* desc);
+ virtual uint32_t action(std::vector<std::string> args);
+
+private:
+};
+
+#endif // __CMDATTENTION_H__