main.cpp
资源名称:GUI.rar [点击查看]
上传用户:jiangfa
上传日期:2022-05-14
资源大小:1651k
文件大小:0k
源码类别:
GDI/图象编程
开发平台:
Unix_Linux
- #include <qapplication.h>
- #include "test.h"
- int main( int argc, char ** argv )
- {
- QApplication a( argc, argv );
- test w;
- w.show();
- a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
- return a.exec();
- }