summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/widgets-tutorial/template.cpp
blob: 595867630cd689997cbad5e3201b698c867aed1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QtGui>

// Include header files for application components.
// ...

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

    // Set up and show widgets.
    // ...

    return app.exec();
}