// $Id: $ #include "URL.h" #include "Options.h" #include "Command_Processor.h" Command::~Command (void) { } URL_Command::URL_Command (URL *url) : url_ (url) { } int URL_Command::execute (void) { // You fill in here return 0; } Command_Processor::Command_Processor (void) { } Command_Processor::~Command_Processor (void) { } int Command_Processor::destroy (void) { // You fill in here } int Command_Processor::execute (void) { // You fill in here return 0; } int Command_Processor::insert (Command *command) { // You fill in here return 0; }