mirror of
https://github.com/NanjingForestryUniversity/UPmatchinewood.git
synced 2025-11-08 14:23:59 +00:00
12 lines
164 B
C++
12 lines
164 B
C++
#include "widget.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
Widget w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|