From 73d53b0962cb19a6d2a7686de658a5540ab07017 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 31 Jul 2006 22:50:47 +0000 Subject: It almost builds, we need to get rid of duplicate list entries and actually store the commands somewhere so the target handler can decide if they need to be run. --- src/target.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/target.cpp') diff --git a/src/target.cpp b/src/target.cpp index 00d16b4..8f4cc4b 100644 --- a/src/target.cpp +++ b/src/target.cpp @@ -26,6 +26,12 @@ void Target::debug() { printf(" %s\n", (*i).c_str() ); } + printf(" Output list:\n"); + for( std::list::iterator i = lOutput.begin(); + i != lOutput.end(); i++ ) + { + printf(" %s\n", (*i).c_str() ); + } } void Target::addInput( const char *sInput ) -- cgit v1.2.3