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

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