source: molecuilder/src/UIElements/TextWindow.cpp@ 3e8325

Last change on this file since 3e8325 was 3e8325, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added a central registry that allows access to actions by name.

  • Property mode set to 100644
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
13using namespace std;
14
15TextWindow::TextWindow()
16{
17 // TODO Auto-generated constructor stub
18
19}
20
21TextWindow::~TextWindow()
22{
23 // TODO Auto-generated destructor stub
24}
25
26void 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.