c++/parameter-lister/info/globalcode/parameterLister/OutputModule.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 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 	virtual void process(std::ostream &output, std::string &command, std::vector<std::string> &args);
    14 private:
    15 
    16 };
    17 
    18 }
    19 }
    20 }
    21 
    22 #endif	/* OUTPUTMODULE_H */
    23