summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdAttention.h
diff options
context:
space:
mode:
authorLeon Lindenfelser <llindenfelser@multitech.com>2015-11-13 08:14:28 -0600
committerLeon Lindenfelser <llindenfelser@multitech.com>2015-11-13 08:14:28 -0600
commitdd557b5a21d64cd49b1179ac891ffb2c63dee6d8 (patch)
treecc31de4ee73352c4248104582c55607f11af0b0c /CommandTerminal/CmdAttention.h
parentf0f9fc2601dc3421aa3f4d9747748c3bee93f703 (diff)
downloadmtdot-box-evb-factory-firmware-dd557b5a21d64cd49b1179ac891ffb2c63dee6d8.tar.gz
mtdot-box-evb-factory-firmware-dd557b5a21d64cd49b1179ac891ffb2c63dee6d8.tar.bz2
mtdot-box-evb-factory-firmware-dd557b5a21d64cd49b1179ac891ffb2c63dee6d8.zip
Added CommandTerminal with unneccessary commands removed
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__