aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/tests/echo/main.cpp
blob: 43ceae4312b9ba182b04f98c42104c9f45a75398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QApplication>

#include "mainwnd.h"

int main( int argc, char *argv[] )
{
	QApplication app( argc, argv );

	MainWnd wnd;
	wnd.show();

	return app.exec();
}