00001 00009 #include <QtGui/qapplication.h> 00010 #include <QtGui/qwidget.h> 00011 #include "wframe.h" 00012 00013 int main( int argc, char **argv ) 00014 { 00015 new QApplication (argc, argv); 00016 00017 WFrame * frame = new WFrame(0,qApp->applicationDirPath () ); 00018 frame->show(); 00019 return qApp->exec(); 00020 }