mirror of
https://github.com/Linloir/GraphBuilder.git
synced 2025-12-16 19:58:12 +08:00
15 lines
269 B
C++
15 lines
269 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.setWindowFlag(Qt::FramelessWindowHint);
|
|
w.setAttribute(Qt::WA_TranslucentBackground);
|
|
w.show();
|
|
return a.exec();
|
|
|
|
}
|