11 lines
163 B
C++
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();
|
|
}
|