c++/parameter-lister/info/globalcode/parameterLister/OutputModule.cpp
changeset 16 65f51abd5fb8
parent 14 d81d0a119e76
child 18 25a73772efbd
     1.1 --- a/c++/parameter-lister/info/globalcode/parameterLister/OutputModule.cpp	Mon May 04 00:34:27 2015 +0200
     1.2 +++ b/c++/parameter-lister/info/globalcode/parameterLister/OutputModule.cpp	Tue May 05 22:19:24 2015 +0200
     1.3 @@ -7,7 +7,7 @@
     1.4  namespace globalcode {
     1.5  namespace parameterLister {
     1.6  
     1.7 -void OutputModule::process(std::ostream &output, std::string &command, std::vector<std::string> &args) {
     1.8 +int OutputModule::process(std::ostream &output, std::string &command, std::vector<std::string> &args) {
     1.9  	terminalCodes::Modifier fgGreen(terminalCodes::FG_GREEN);
    1.10  	terminalCodes::Modifier fgReset(terminalCodes::FG_DEFAULT);
    1.11  
    1.12 @@ -20,6 +20,8 @@
    1.13  	});
    1.14  
    1.15  	output << "</outputModule>" << endl;
    1.16 +	
    1.17 +	return 0;
    1.18  }
    1.19  
    1.20