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

多媒体

开发平台:

Visual C++

  1. #include <QtGui/QApplication>
  2. #include "mainwindow.h"
  3. int main(int argc, char *argv[])
  4. {
  5.     QApplication a(argc, argv);
  6.     MainWindow w;
  7.     w.show();
  8.     return a.exec();
  9. }