summaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: 4ffc43998720be532267378b645dae584d80116d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <QApplication>
#include "Widget.h"

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