c++/parameter-lister/CLI.cpp
changeset 7 2f46492e90bc
parent 5 1581a99ab33f
child 9 598a575ae57f
     1.1 --- a/c++/parameter-lister/CLI.cpp	Sun May 03 21:55:52 2015 +0200
     1.2 +++ b/c++/parameter-lister/CLI.cpp	Sun May 03 22:00:12 2015 +0200
     1.3 @@ -5,6 +5,8 @@
     1.4  #include <boost/optional.hpp>
     1.5  
     1.6  #include "info/globalcode/parameterLister/terminalCodes/TerminalCodes.h"
     1.7 +#include "info/globalcode/parameterLister/OutputModule.h"
     1.8 +#include "info/globalcode/parameterLister/TerminalOutputModule.h"
     1.9  
    1.10  using namespace std;
    1.11  using namespace info::globalcode::parameterLister;
    1.12 @@ -60,6 +62,11 @@
    1.13  			cout << "ENV: " << envName << " is missing";
    1.14  		}
    1.15  	}
    1.16 +	
    1.17 +	{
    1.18 +		OutputModule om;
    1.19 +		TerminalOutputModule tom;
    1.20 +	}
    1.21  
    1.22  
    1.23  	return 0;