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

GDI/图象编程

开发平台:

Unix_Linux

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