#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) {