- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/UIElements/CommandLineUI/CommandLineUIFactory.cpp ¶
r112b09 rbf3817 5 5 * Author: heber 6 6 */ 7 8 // include config.h 9 #ifdef HAVE_CONFIG_H 10 #include <config.h> 11 #endif 7 12 8 13 #include "Helpers/MemDebug.hpp" … … 32 37 return new CommandLineWindow(); 33 38 } 39 40 CommandLineUIFactory::description::description() : 41 UIFactory::factoryDescription("CommandLine") 42 {} 43 44 CommandLineUIFactory::description::~description() 45 {} 46 47 UIFactory* CommandLineUIFactory::description::makeFactory(){ 48 return new CommandLineUIFactory(); 49 }
Note:
See TracChangeset
for help on using the changeset viewer.