This commit is contained in:
wn
2014-01-17 22:00:39 +01:00
commit 6f9d7c6f9f
18 changed files with 1080 additions and 0 deletions

14
test.h Normal file
View File

@ -0,0 +1,14 @@
#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_ */