mirror of
https://github.com/NanjingForestryUniversity/UpmatchinePassion-tomato.git
synced 2025-11-08 14:24:06 +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();
|
|
}
|