- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextUI/TextUIFactory.cpp
r112b09 rbf3817 6 6 */ 7 7 8 // include config.h 9 #ifdef HAVE_CONFIG_H 10 #include <config.h> 11 #endif 12 8 13 #include "Helpers/MemDebug.hpp" 9 14 10 #include "TextUI/TextUIFactory.hpp" 11 #include "TextUI/TextWindow.hpp" 12 #include "TextUI/TextDialog.hpp" 13 15 #include "UIElements/TextUI/TextUIFactory.hpp" 16 #include "UIElements/TextUI/TextWindow.hpp" 17 #include "UIElements/TextUI/TextDialog.hpp" 14 18 15 19 TextUIFactory::TextUIFactory() 16 { 17 // TODO Auto-generated constructor stub 18 19 } 20 {} 20 21 21 22 TextUIFactory::~TextUIFactory() 22 { 23 // TODO Auto-generated destructor stub 24 } 23 {} 25 24 26 25 … … 33 32 } 34 33 34 TextUIFactory::description::description() : 35 UIFactory::factoryDescription("Text") 36 {} 37 38 TextUIFactory::description::~description() 39 {} 40 41 UIFactory* TextUIFactory::description::makeFactory(){ 42 return new TextUIFactory(); 43 } 44
Note:
See TracChangeset
for help on using the changeset viewer.