summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdAttention.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CommandTerminal/CmdAttention.cpp')
-rw-r--r--CommandTerminal/CmdAttention.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/CommandTerminal/CmdAttention.cpp b/CommandTerminal/CmdAttention.cpp
new file mode 100644
index 0000000..892e891
--- /dev/null
+++ b/CommandTerminal/CmdAttention.cpp
@@ -0,0 +1,16 @@
+#include "CmdAttention.h"
+
+CmdAttention::CmdAttention(mDot* dot) : Command(dot, "Attention", "AT", "Attention")
+{
+ _help = std::string(text()) + ": " + std::string(desc());
+}
+
+CmdAttention::CmdAttention(mDot* dot, const char* name, const char* text, const char* desc) : Command(dot, name, text, desc)
+{
+
+}
+
+uint32_t CmdAttention::action(std::vector<std::string> args) {
+ return 0;
+}
+