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