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