c++/parameter-lister/info/globalcode/parameterLister/OutputModule.cpp
author František Kučera <franta-hg@frantovo.cz>
Sun, 03 May 2015 23:41:43 +0200
changeset 10 145b45ef7751
parent 9 598a575ae57f
child 11 870b868b6b57
permissions -rw-r--r--
shared_ptr
     1 #include "OutputModule.h"
     2 
     3 namespace info {
     4 namespace globalcode {
     5 namespace parameterLister {
     6 
     7 OutputModule::OutputModule() {
     8 }
     9 
    10 OutputModule::OutputModule(const OutputModule& orig) {
    11 }
    12 
    13 OutputModule::~OutputModule() {
    14 }
    15 
    16 void OutputModule::process(std::ostream &output) {
    17 	output << "OutputModule!" << std::endl;
    18 }
    19 
    20 
    21 }
    22 }
    23 }
    24