15 lines
262 B
C++
15 lines
262 B
C++
#ifndef TEST_H_
|
|
#define TEST_H_
|
|
|
|
#include "cmd.h"
|
|
|
|
class TestCmd : public Cmd {
|
|
public:
|
|
virtual String getCmdName() { return "TEST"; }
|
|
virtual String getHelp() { return "Just a test command"; }
|
|
virtual String exec(String params);
|
|
};
|
|
|
|
|
|
#endif /* TEST_H_ */
|