c++/parameter-lister/info/globalcode/parameterLister/OutputModule.cpp
author František Kučera <franta-hg@frantovo.cz>
Sun, 03 May 2015 22:19:03 +0200
changeset 9 598a575ae57f
parent 8 8dadf7d93aa3
child 11 870b868b6b57
permissions -rw-r--r--
print module name
     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