source:
molecuilder/src/UIElements/TextWindow.cpp@
3e8325
| Last change on this file since 3e8325 was 3e8325, checked in by , 16 years ago | |
|---|---|
|
|
| File size: 641 bytes | |
| Line | |
|---|---|
| 1 | /* |
| 2 | * TextWindow.cpp |
| 3 | * |
| 4 | * Created on: Jan 7, 2010 |
| 5 | * Author: crueger |
| 6 | */ |
| 7 | |
| 8 | #include "UIElements/TextWindow.hpp" |
| 9 | #include "../menu.hpp" |
| 10 | |
| 11 | #include <iostream> |
| 12 | |
| 13 | using namespace std; |
| 14 | |
| 15 | TextWindow::TextWindow() |
| 16 | { |
| 17 | // TODO Auto-generated constructor stub |
| 18 | |
| 19 | } |
| 20 | |
| 21 | TextWindow::~TextWindow() |
| 22 | { |
| 23 | // TODO Auto-generated destructor stub |
| 24 | } |
| 25 | |
| 26 | void TextWindow::display(MoleculeListClass *molecules, config *configuration, periodentafel *periode, char *ConfigFileName) { |
| 27 | cout << "creating main window" <<endl; |
| 28 | oldmenu *main_menu; |
| 29 | main_menu = new oldmenu; |
| 30 | main_menu->perform(molecules, configuration, periode, ConfigFileName); |
| 31 | delete main_menu; |
| 32 | } |
Note:
See TracBrowser
for help on using the repository browser.
