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