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.
vmprofiler-qt/src/main.cpp

18 lines
457 B

#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();
}