#include "../../configFrontEndPlugIn.h"
Go to the source code of this file.
Functions | |
void | init ( void ) |
void | run ( int argc, char** argv ) |
Variables | |
struct ConfigFrontEndPlugIn | qtPlug = { init, run } |
|
Definition at line 57 of file client/frontends/qt/qtFrontEnd.cpp.
00058 { 00059 fprintf ( stderr, "\n3Dsia client\nQt configuration frontend plugin\n" ); 00060 }
|
Definition at line 72 of file client/frontends/qt/qtFrontEnd.cpp.
00072 { 00073 QApplication qapp (argc, argv); 00074 00075 MyMainWidget w; 00076 00077 w.show (); 00078 qapp.setMainWidget (&w); 00079 qapp.exec (); 00080 }
|
Definition at line 9 of file client/frontends/qt/qtFrontEnd.h.