Files
vince/testdll/main.cpp
xin 495f947827 添加了 归零等操作
增加了testdll 样例
2020-09-03 14:52:28 +08:00

11 lines
163 B
C++

#include "testdll.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
testdll w;
w.show();
return a.exec();
}