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

#include "Command.h"

class ModeConfig;

class CmdDeviceId : public Command {

public:

    CmdDeviceId(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 // __CMDDEVICEID_H__