c++/parameter-lister/info/globalcode/parameterLister/TerminalOutputModule.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 04 May 2015 00:16:12 +0200
changeset 12 fde958908539
parent 11 870b868b6b57
child 16 65f51abd5fb8
permissions -rw-r--r--
remove constructors
     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 void 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