aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/ProjectFormats/301/main.cpp
blob: 01358949b2925fa0d7e07a58cf38437f50dcf5a7 (plain)
1
2
3
4
5
6
7
8
9
10
#include "QtProjectV301.h"
#include <QtWidgets/QApplication>

int main(int argc, char *argv[])
{
	QApplication a(argc, argv);
	QtProjectV301 w;
	w.show();
	return a.exec();
}