/* * TextUIFactory.cpp * * Created on: Jan 5, 2010 * Author: crueger */ #include "UIElements/TextUIFactory.hpp" #include "UIElements/TextWindow.hpp" #include "UIElements/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(); }