c++/parameter-lister/info/globalcode/parameterLister/TerminalOutputModule.h
author František Kučera <franta-hg@frantovo.cz>
Tue, 05 May 2015 22:19:24 +0200
changeset 16 65f51abd5fb8
parent 12 fde958908539
child 26 6e5c4e267ddb
permissions -rw-r--r--
chooseOutputModule
     1 #ifndef TERMINALOUTPUTMODULE_H
     2 #define	TERMINALOUTPUTMODULE_H
     3 
     4 #include <iostream>
     5 
     6 #include "OutputModule.h"
     7 
     8 namespace info {
     9 namespace globalcode {
    10 namespace parameterLister {
    11 
    12 class TerminalOutputModule : public OutputModule {
    13 public:
    14 	virtual int process(std::ostream &output, std::string &command, std::vector<std::string> &args);
    15 private:
    16 
    17 };
    18 
    19 }
    20 }
    21 }
    22 
    23 #endif	/* TERMINALOUTPUTMODULE_H */
    24