summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdDeviceId.h
blob: 9e1ad74689595ae09040f8dd8f0662609e2414f8 (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 CommandTerminal;

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__