/* * CommandLineUIFactory.cpp * * Created on: May 8, 2010 * Author: heber */ #include "UIElements/CommandLineUIFactory.hpp" #include "UIElements/CommandLineWindow.hpp" #include "UIElements/CommandLineDialog.hpp" CommandLineUIFactory::CommandLineUIFactory() { // TODO Auto-generated constructor stub } CommandLineUIFactory::~CommandLineUIFactory() { // TODO Auto-generated destructor stub } Dialog* CommandLineUIFactory::makeDialog() { return NULL; } MainWindow* CommandLineUIFactory::makeMainWindow(menuPopulaters populaters,MoleculeListClass *molecules, config *configuration, periodentafel *periode, char *ConfigFileName) { return new CommandLineWindow(populaters,molecules,configuration,periode,ConfigFileName); }