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