/**
* Constructor.
*/
- Command(const std::string& target = "",
- const std::string& command = "");
+ Command(const std::string& _target = "",
+ const std::string& _command = "");
/**
* Establece el destino.
/**
* Obtiene el destino.
*/
- const std::string& get_target(void);
+ const std::string& get_target(void) const;
/**
* Establece el comando.
/**
* Obtiene el comand.
*/
- const std::string& get_command(void);
+ const std::string& get_command(void) const;
/**
* Establece los argumentos.
/**
* Obtiene los argumentos.
*/
- const Arguments& get_args(void);
+ const Arguments& get_args(void) const;
/**
* Agrega un argumentos.