00001 #include "OutputModuleGUI.h" 00002 #include "../modules/OutputModule.h" 00003 #include <iostream> 00004 00005 // TODO: more or less useful visualisation here 00006 OutputModuleGUI::OutputModuleGUI(OutputModule *module) : 00007 AbstractModuleGUI(module) 00008 { 00009 } 00010 00011 void OutputModuleGUI::init() 00012 { 00013 std::cout << "Output Module started" << std::endl; 00014 } 00015 00016 void OutputModuleGUI::destroy() 00017 { 00018 std::cout << "Output Module stopped" << std::endl; 00019 } 00020 00021 void OutputModuleGUI::updateText(const char *txt) 00022 { 00023 std::cout << txt << std::endl; 00024 }