source: molecuilder/src/UIElements/TextUIFactory.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: 502 bytes
Line 
1/*
2 * TextUIFactory.cpp
3 *
4 * Created on: Jan 5, 2010
5 * Author: crueger
6 */
7
8#include "UIElements/TextUIFactory.hpp"
9#include "UIElements/TextWindow.hpp"
10#include "UIElements/TextDialog.hpp"
11
12
13TextUIFactory::TextUIFactory()
14{
15 // TODO Auto-generated constructor stub
16
17}
18
19TextUIFactory::~TextUIFactory()
20{
21 // TODO Auto-generated destructor stub
22}
23
24
25Dialog* TextUIFactory::makeDialog() {
26 return new TextDialog();
27}
28
29MainWindow* TextUIFactory::makeMainWindow() {
30 return new TextWindow();
31}
32
Note: See TracBrowser for help on using the repository browser.