00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef YQUIComponent_h
00022 #define YQUIComponent_h
00023
00024 #include <YUIComponent.h>
00025 #include "YQUI.h"
00026
00027
00028 class YQUIComponent : public YUIComponent
00029 {
00030 public:
00031
00032 YQUIComponent(): YUIComponent() {}
00033
00039 virtual YUI * createUI( int argc, char **argv, bool with_threads, const char * macro_file )
00040 {
00041 return new YQUI( argc, argv, with_threads, macro_file );
00042 }
00043
00049 virtual string name() const { return "qt"; }
00050
00051 };
00052
00053
00054 #endif // YQUIComponent_h