#include #include "server/commands/GeneralCommands.h" void GeneralCommands::test(ServerCommands& /*sc*/, const std::vector& args) { std::cout << "test command" << std::endl; for(size_t i = 0; i < args.size(); i++) { std::cout << " - " << args[i] << std::endl; } } void GeneralCommands::stop(ServerCommands& sc, const std::vector& /*args*/) { sc.stop(); }