Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/TextUI/TextUIFactory.cpp

    r112b09 rbf3817  
    66 */
    77
     8// include config.h
     9#ifdef HAVE_CONFIG_H
     10#include <config.h>
     11#endif
     12
    813#include "Helpers/MemDebug.hpp"
    914
    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"
    1418
    1519TextUIFactory::TextUIFactory()
    16 {
    17   // TODO Auto-generated constructor stub
    18 
    19 }
     20{}
    2021
    2122TextUIFactory::~TextUIFactory()
    22 {
    23   // TODO Auto-generated destructor stub
    24 }
     23{}
    2524
    2625
     
    3332}
    3433
     34TextUIFactory::description::description() :
     35    UIFactory::factoryDescription("Text")
     36{}
     37
     38TextUIFactory::description::~description()
     39{}
     40
     41UIFactory* TextUIFactory::description::makeFactory(){
     42  return new TextUIFactory();
     43}
     44
Note: See TracChangeset for help on using the changeset viewer.