|
Last change
on this file since 83afe0 was 83afe0, checked in by Frederik Heber <heber@…>, 16 years ago |
|
Extended UIFactory to a CommandLine derivate.
Signed-off-by: Frederik Heber <heber@…>
|
-
Property mode
set to
100644
|
|
File size:
745 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * CommandLineUIFactory.cpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: May 8, 2010
|
|---|
| 5 | * Author: heber
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 | #include "UIElements/CommandLineUIFactory.hpp"
|
|---|
| 10 | #include "UIElements/CommandLineWindow.hpp"
|
|---|
| 11 | #include "UIElements/CommandLineDialog.hpp"
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 | CommandLineUIFactory::CommandLineUIFactory()
|
|---|
| 15 | {
|
|---|
| 16 | // TODO Auto-generated constructor stub
|
|---|
| 17 |
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | CommandLineUIFactory::~CommandLineUIFactory()
|
|---|
| 21 | {
|
|---|
| 22 | // TODO Auto-generated destructor stub
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 | Dialog* CommandLineUIFactory::makeDialog() {
|
|---|
| 27 | return NULL;
|
|---|
| 28 | }
|
|---|
| 29 |
|
|---|
| 30 | MainWindow* CommandLineUIFactory::makeMainWindow(menuPopulaters populaters,MoleculeListClass *molecules, config *configuration, periodentafel *periode, char *ConfigFileName) {
|
|---|
| 31 | return new CommandLineWindow(populaters,molecules,configuration,periode,ConfigFileName);
|
|---|
| 32 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.