Files
vince/testdll/main.cpp

11 lines
163 B
C++
Raw Permalink Normal View History

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