libyui-gtk  2.44.5
 All Classes Functions
Y2CCGtk.cc
1 /********************************************************************
2  * YaST2-GTK - http://en.opensuse.org/YaST2-GTK *
3  ********************************************************************/
4 
5 #include <yui/Libyui_config.h>
6 #include <YGUI.h>
7 #include <YGi18n.h>
8 
9 YUI * createUI( bool withThreads )
10 {
11  static YGUI *_ui = 0;
12 
13  if ( ! _ui )
14  {
15  _ui = new YGUI( withThreads );
16  }
17 
18  return _ui;
19 }
20