16 lines
335 B
C++
16 lines
335 B
C++
#include "Command.h"
|
|
#include "Log.h"
|
|
#include "CommandList.h"
|
|
|
|
namespace core {
|
|
|
|
int Command::processCommand(coreutils::ZString &request, TCPSession &session) {
|
|
return 0;
|
|
}
|
|
|
|
void Command::output(std::stringstream &out) {
|
|
out << "Write your own command description here for the help system." << std::endl;
|
|
}
|
|
|
|
}
|