c++/parameter-lister/CLI.cpp
changeset 1 56ae7ed48121
parent 0 7399cb02184b
child 3 a6b5eb87350b
     1.1 --- a/c++/parameter-lister/CLI.cpp	Sun May 03 01:25:03 2015 +0200
     1.2 +++ b/c++/parameter-lister/CLI.cpp	Sun May 03 02:03:03 2015 +0200
     1.3 @@ -1,19 +1,17 @@
     1.4 -/* 
     1.5 - * File:   CLI.cpp
     1.6 - * Author: Ing. František Kučera (frantovo.cz)
     1.7 - *
     1.8 - * Created on 3. května 2015, 1:20
     1.9 - */
    1.10 -
    1.11  #include <cstdlib>
    1.12 +#include <iostream>
    1.13 +#include "info/globalcode/terminalCodes/TerminalCodes.h"
    1.14  
    1.15  using namespace std;
    1.16 +using namespace info::globalCode::parameterLister;
    1.17  
    1.18 -/*
    1.19 - * 
    1.20 - */
    1.21  int main(int argc, char** argv) {
    1.22  
    1.23 +	terminalCodes::Modifier fgGreen(terminalCodes::FG_GREEN);
    1.24 +	terminalCodes::Modifier fgReset(terminalCodes::FG_DEFAULT);
    1.25 +
    1.26 +	cout << "INFO: " << fgGreen << "Parameter lister" << fgReset << " is starting" << endl;
    1.27 +
    1.28  	return 0;
    1.29  }
    1.30