diff options
Diffstat (limited to 'CommandTerminal/CmdDisplayConfig.h')
-rw-r--r-- | CommandTerminal/CmdDisplayConfig.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CommandTerminal/CmdDisplayConfig.h b/CommandTerminal/CmdDisplayConfig.h new file mode 100644 index 0000000..05e7ac9 --- /dev/null +++ b/CommandTerminal/CmdDisplayConfig.h @@ -0,0 +1,19 @@ +#ifndef __CMDDISPLAYCONFIG_H__ +#define __CMDDISPLAYCONFIG_H__ + +#include "Command.h" + +class CmdDisplayConfig : public Command { + +public: + + CmdDisplayConfig(mDot* dot, mts::MTSSerial& serial); + virtual uint32_t action(std::vector<std::string> args); + +private: + + mts::MTSSerial& _serial; + +}; + +#endif // __CMDDISPLAYCONFIG_H__ |