X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/ffe5447aa2d71b5296cbdd36c48d5f9d59e249af..a9d033a0a6748c192d30c9c65ebcc8b1a96cd43b:/Server/include/plaqui/server/command.h diff --git a/Server/include/plaqui/server/command.h b/Server/include/plaqui/server/command.h index 019cad2..cd49d43 100644 --- a/Server/include/plaqui/server/command.h +++ b/Server/include/plaqui/server/command.h @@ -80,8 +80,8 @@ namespace Server { /** * Constructor. */ - Command(const std::string& target = "", - const std::string& command = ""); + Command(const std::string& _target = "", + const std::string& _command = ""); /** * Establece el destino. @@ -91,7 +91,7 @@ namespace Server { /** * Obtiene el destino. */ - const std::string& get_target(void); + const std::string& get_target(void) const; /** * Establece el comando. @@ -101,7 +101,7 @@ namespace Server { /** * Obtiene el comand. */ - const std::string& get_command(void); + const std::string& get_command(void) const; /** * Establece los argumentos. @@ -111,13 +111,18 @@ namespace Server { /** * Obtiene los argumentos. */ - const Arguments& get_args(void); + const Arguments& get_args(void) const; /** - * Agrega un argumentos. + * Agrega un argumento. */ void add_arg(const std::string& arg); + /** + * Agrega un argumento. + */ + void add_arg(const unsigned& arg); + /** * Obtiene el comando desde un pedido HTTP completo. */