c++/parameter-lister/info/globalcode/parameterLister/TerminalOutputModule.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 04 May 2015 00:12:33 +0200
changeset 11 870b868b6b57
parent 10 145b45ef7751
child 12 fde958908539
permissions -rw-r--r--
move formatting logic to output modules
     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 	TerminalOutputModule();
    15 	TerminalOutputModule(const TerminalOutputModule& orig);
    16 	virtual ~TerminalOutputModule();
    17 	virtual void process(std::ostream &output, std::string &command, std::vector<std::string> &args);
    18 private:
    19 
    20 };
    21 
    22 }
    23 }
    24 }
    25 
    26 #endif	/* TERMINALOUTPUTMODULE_H */
    27