summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdGetSurveyDataFile.h
diff options
context:
space:
mode:
authorLeon Lindenfelser <llindenfelser@multitech.com>2015-11-16 16:18:09 -0600
committerLeon Lindenfelser <llindenfelser@multitech.com>2015-11-16 16:18:09 -0600
commitf484beed77531d7ef2da65cf049fe9c4ac6b7d08 (patch)
tree4b7c15b9ec44819e1e1488b020f164143241d88e /CommandTerminal/CmdGetSurveyDataFile.h
parente6bfab044122be837c2235a6bf634b369c753e9c (diff)
downloadmtdot-box-evb-factory-firmware-f484beed77531d7ef2da65cf049fe9c4ac6b7d08.tar.gz
mtdot-box-evb-factory-firmware-f484beed77531d7ef2da65cf049fe9c4ac6b7d08.tar.bz2
mtdot-box-evb-factory-firmware-f484beed77531d7ef2da65cf049fe9c4ac6b7d08.zip
Added all the new dotbox commands with some detail work still needed
Diffstat (limited to 'CommandTerminal/CmdGetSurveyDataFile.h')
-rw-r--r--CommandTerminal/CmdGetSurveyDataFile.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/CommandTerminal/CmdGetSurveyDataFile.h b/CommandTerminal/CmdGetSurveyDataFile.h
new file mode 100644
index 0000000..ff4cf57
--- /dev/null
+++ b/CommandTerminal/CmdGetSurveyDataFile.h
@@ -0,0 +1,20 @@
+#ifndef __CMDGETSURVEYDATAFILE_H__
+#define __CMDGETSURVEYDATAFILE_H__
+
+#include "Command.h"
+
+class CommandTerminal;
+
+class CmdGetSurveyDataFile: public Command
+{
+
+public:
+
+ CmdGetSurveyDataFile(mDot* dot, mts::MTSSerial& serial);
+ virtual uint32_t action(std::vector<std::string> args);
+
+private:
+ mts::MTSSerial& _serial;
+};
+
+#endif // __CMDGETSURVEYDATAFILE_H__