You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
457 B
18 lines
457 B
4 years ago
|
#include <QtWidgets/QApplication>
|
||
|
#include <QFile>
|
||
|
#include <QTextStream>
|
||
|
#include "QVMProfiler.h"
|
||
|
|
||
|
#include "framelesswindow.h"
|
||
|
#include "DarkStyle.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication app(argc, argv);
|
||
|
QApplication::setStyle(new DarkStyle);
|
||
|
FramelessWindow framelessWindow;
|
||
|
framelessWindow.setContent(new QVMProfiler);
|
||
|
framelessWindow.setWindowIcon(QIcon("icon.ico"));
|
||
|
framelessWindow.show();
|
||
|
return app.exec();
|
||
|
}
|