aboutsummaryrefslogtreecommitdiffstats
path: root/Templates/gui/main.cpp
blob: a386d101c6306f8fe7fb08e5d026fab2ce875b06 (plain)
1
2
3
4
5
6
7
8
9
10
$include$
#include <QtWidgets/QApplication>

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