summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdDummy.h
blob: 855114733348267485dd2c42cda3c217ea17ab89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __CMDDUMMY_H__
#define __CMDDUMMY_H__

#include "Command.h"

class CmdDummy : public Command {

public:

    CmdDummy(mDot* dot, const char* name, const char* text, const char* desc);
    virtual uint32_t action(std::vector<std::string> args);

private:
};

#endif // __CMDDUMMY_H__