aboutsummaryrefslogtreecommitdiffstats
path: root/Templates/gui/main.cpp
blob: df591883588ab29522869c87db377c0dfac0f43c (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);
    $classname$ w;
    w.show();
    return a.exec();
}