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

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