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