mirror of
https://github.com/edisionnano/QDiskInfo.git
synced 2026-03-08 04:19:59 +03:00
13 lines
220 B
C++
13 lines
220 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.setWindowIcon(QIcon(":/icons/icon.svg"));
|
|
w.show();
|
|
return a.exec();
|
|
}
|