#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_ */