c++/parameter-lister/info/globalcode/parameterLister/OutputModule.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 OUTPUTMODULE_H
     2 #define	OUTPUTMODULE_H
     3 
     4 #include <iostream>
     5 #include <vector>
     6 
     7 namespace info {
     8 namespace globalcode {
     9 namespace parameterLister {
    10 
    11 class OutputModule {
    12 public:
    13 	OutputModule();
    14 	OutputModule(const OutputModule& orig);
    15 	virtual ~OutputModule();
    16 	virtual void process(std::ostream &output, std::string &command, std::vector<std::string> &args);
    17 private:
    18 
    19 };
    20 
    21 }
    22 }
    23 }
    24 
    25 #endif	/* OUTPUTMODULE_H */
    26