/* * CommandLineUIFactory.cpp * * Created on: May 8, 2010 * Author: heber */ #include "CommandLineUI/CommandLineUIFactory.hpp" #include "CommandLineUI/CommandLineWindow.hpp" #include "CommandLineUI/CommandLineDialog.hpp" CommandLineUIFactory::CommandLineUIFactory() { // TODO Auto-generated constructor stub } CommandLineUIFactory::~CommandLineUIFactory() { // TODO Auto-generated destructor stub } Dialog* CommandLineUIFactory::makeDialog() { return new CommandLineDialog(); } MainWindow* CommandLineUIFactory::makeMainWindow() { return new CommandLineWindow(); }