#include "server/commands/TestCommand.h" TestCommand::TestCommand() : BaseCommand("test") { } TestCommand::~TestCommand() { cout << "destroy test command" << endl; } void TestCommand::execute(ICommandSource& cs, vector& args) const { cout << "test command" << endl; for(unsigned long i = 0; i < args.size(); i++) { cout << " - " << args[i] << endl; } }