X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/2f5c973fdf3f7fb25b13996b66d566c58066f6a0..f29a7129de56edca96ea8ef58576898c1e52ed6f:/Server/src/command.cpp diff --git a/Server/src/command.cpp b/Server/src/command.cpp index 5448ea6..08a73c9 100644 --- a/Server/src/command.cpp +++ b/Server/src/command.cpp @@ -44,12 +44,13 @@ Command::~Command(void) { #endif // DEBUG } -Command::Command(const string& target, const string& command): - target(target), command(command) { +Command::Command(const string& _target, const string& _command) { #ifdef DEBUG cerr << __FILE__ << ": target = " << target << " | " << "command = " << command << endl; #endif // DEBUG + set_target(_target); + set_command(_command); } void Command::build(void) { @@ -108,7 +109,7 @@ istream& operator>>(istream& is, Command& command) { } else { command.target = ""; } - if (command.args.size() > 1) { + if (command.args.size() > 0) { command.command = command.args[0]; command.args.erase(command.args.begin()); } else {