QtExamples/QToolButtonAutoRaiseEx/QMakeAutoRaise/main.cpp

17 lines
242 B
C++
Raw Normal View History

2022-10-20 16:23:15 +08:00
#include "testbtstyle.h"
#include "widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
// Widget w;
// w.show();
auto t = new TestBTStyle();
t->show();
return a.exec();
}