Last change
on this file since 6d21bd was 6d21bd, checked in by Tillmann Crueger <crueger@…>, 16 years ago |
Added Basis for creating globally accessible and compatible UIElements
- Added Factories for UIElements that can be chosen at programm startup
- Added Dialogs that can be used to query values
|
-
Property mode
set to
100644
|
File size:
389 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/TextDialog.hpp"
|
---|
10 |
|
---|
11 | TextUIFactory::TextUIFactory()
|
---|
12 | {
|
---|
13 | // TODO Auto-generated constructor stub
|
---|
14 |
|
---|
15 | }
|
---|
16 |
|
---|
17 | TextUIFactory::~TextUIFactory()
|
---|
18 | {
|
---|
19 | // TODO Auto-generated destructor stub
|
---|
20 | }
|
---|
21 |
|
---|
22 |
|
---|
23 | Dialog* TextUIFactory::makeDialog() {
|
---|
24 | return new TextDialog();
|
---|
25 | }
|
---|
26 |
|
---|
27 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.