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

#include "Command.h"

class CommandTerminal;

class CmdExit: public Command
{

public:

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

private:
    mts::MTSSerial& _serial;
};

#endif // __CMDEXIT_H__