2017-10-20 20:52:19 +08:00
|
|
|
#include "qqtexquisiteform.h"
|
|
|
|
#include <QApplication>
|
|
|
|
|
2017-10-28 22:03:03 +08:00
|
|
|
int main(int argc, char* argv[])
|
2017-10-20 20:52:19 +08:00
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
QQtExquisiteForm w;
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|
2017-10-28 22:03:03 +08:00
|
|
|
|