summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdDisplayConfig.h
blob: 05e7ac926ab973200f540aa7257653717b761f2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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__