/* * TextUIFactory.cpp * * Created on: Jan 5, 2010 * Author: crueger */ #include "Helpers/MemDebug.hpp" #include "TextUI/TextUIFactory.hpp" #include "TextUI/TextWindow.hpp" #include "TextUI/TextDialog.hpp" TextUIFactory::TextUIFactory() { // TODO Auto-generated constructor stub } TextUIFactory::~TextUIFactory() { // TODO Auto-generated destructor stub } Dialog* TextUIFactory::makeDialog() { return new TextDialog(); } MainWindow* TextUIFactory::makeMainWindow() { return new TextWindow(); }