20 lines
375 B
C++
20 lines
375 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
#include <QIcon>
|
|
#include <QSharedMemory>
|
|
#include <QSystemSemaphore>
|
|
#include <QMessageBox>
|
|
#include <QDebug>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
// 设置应用程序图标
|
|
a.setWindowIcon(QIcon(":/resource/logo.png"));
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
} |