summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdFrequencySubBand.h
diff options
context:
space:
mode:
Diffstat (limited to 'CommandTerminal/CmdFrequencySubBand.h')
-rw-r--r--CommandTerminal/CmdFrequencySubBand.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/CommandTerminal/CmdFrequencySubBand.h b/CommandTerminal/CmdFrequencySubBand.h
new file mode 100644
index 0000000..14d50c9
--- /dev/null
+++ b/CommandTerminal/CmdFrequencySubBand.h
@@ -0,0 +1,20 @@
+#ifndef __CMDFREQUENCYSUBBAND_H__
+#define __CMDFREQUENCYSUBBAND_H__
+
+#include "Command.h"
+
+class CommandTerminal;
+
+class CmdFrequencySubBand : public Command {
+
+public:
+
+ CmdFrequencySubBand(mDot* dot, mts::MTSSerial& serial);
+ virtual uint32_t action(std::vector<std::string> args);
+ virtual bool verify(std::vector<std::string> args);
+
+private:
+ mts::MTSSerial& _serial;
+};
+
+#endif // __CMDFREQUENCYSUBBAND_H__