summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdDeleteSurveyDataFile.h
blob: a0e1663a66458692c4b8282293ea6b4060091423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __CMDDELETESURVEYDATAFILE_H__
#define __CMDDELETESURVEYDATAFILE_H__

#include "Command.h"

class CommandTerminal;

class CmdDeleteSurveyDataFile: public Command
{

public:

    CmdDeleteSurveyDataFile(mDot* dot, mts::MTSSerial& serial);
    virtual uint32_t action(std::vector<std::string> args);

private:
    mts::MTSSerial& _serial;
};

#endif // __CMDDELETESURVEYDATAFILE_H__