c++/parameter-lister/info/globalcode/parameterLister/OutputModule.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 03 May 2015 22:19:03 +0200
changeset 9 598a575ae57f
parent 8 8dadf7d93aa3
child 10 145b45ef7751
permissions -rw-r--r--
print module name
     1 #ifndef OUTPUTMODULE_H
     2 #define	OUTPUTMODULE_H
     3 
     4 #include <iostream>
     5 
     6 namespace info {
     7 namespace globalcode {
     8 namespace parameterLister {
     9 
    10 class OutputModule {
    11 public:
    12 	OutputModule();
    13 	OutputModule(const OutputModule& orig);
    14 	virtual ~OutputModule();
    15 	void process(std::ostream &output);
    16 private:
    17 
    18 };
    19 
    20 }
    21 }
    22 }
    23 
    24 #endif	/* OUTPUTMODULE_H */
    25