mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
12 lines
184 B
C++
12 lines
184 B
C++
#include "qqtexquisiteform.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
QQtExquisiteForm w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|