main.cpp
上传用户:yayahi0755
上传日期:2022-05-14
资源大小:876k
文件大小:0k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. #include <qapplication.h>
  2. #include "frmclient.h"
  3. int main( int argc, char ** argv )
  4. {
  5.     QApplication a( argc, argv );
  6.     frmclient w;
  7.     //StartUp s;
  8.     w.show();
  9.     a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
  10.     return a.exec();
  11. }