c++/parameter-lister/info/globalcode/parameterLister/OutputModule.cpp
changeset 20 0684883953ba
parent 19 48a3c9c50937
child 28 bfef9f34e438
     1.1 --- a/c++/parameter-lister/info/globalcode/parameterLister/OutputModule.cpp	Tue May 05 22:30:28 2015 +0200
     1.2 +++ b/c++/parameter-lister/info/globalcode/parameterLister/OutputModule.cpp	Tue May 05 22:46:40 2015 +0200
     1.3 @@ -11,12 +11,15 @@
     1.4  
     1.5  	for (int i = 0; i < args.size(); i++) {
     1.6  		string s = args[i];
     1.7 -		output << i + 1 << ":" << s.length() << " = \"" << s << "\"" << endl;
     1.8 +		output << i + 1 << ":" << s.length() << " = \"" << escapeValue(s, true) << "\"" << endl;
     1.9  	}
    1.10  
    1.11  	return 0;
    1.12  }
    1.13  
    1.14 +string OutputModule::escapeValue(string value, bool colorize) {
    1.15 +	return value;
    1.16 +}
    1.17  
    1.18  }
    1.19  }