aboutsummaryrefslogtreecommitdiff
path: root/src/target.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/target.cpp')
-rw-r--r--src/target.cpp6
1 files changed, 6 insertions, 0 deletions
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()
26 { 26 {
27 printf(" %s\n", (*i).c_str() ); 27 printf(" %s\n", (*i).c_str() );
28 } 28 }
29 printf(" Output list:\n");
30 for( std::list<std::string>::iterator i = lOutput.begin();
31 i != lOutput.end(); i++ )
32 {
33 printf(" %s\n", (*i).c_str() );
34 }
29} 35}
30 36
31void Target::addInput( const char *sInput ) 37void Target::addInput( const char *sInput )