summaryrefslogtreecommitdiffstats
path: root/examples/qpa/windows/main.cpp
blob: 99c24fa0170c3cff97e484ed997d866ce1bc0eb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <QGuiApplication>

#include "window.h"

int main(int argc, char **argv)
{
    QGuiApplication app(argc, argv);

    Window a;
    a.setVisible(true);

    Window b;
    b.setVisible(true);

    Window child(&b);
    child.setVisible(true);

    return app.exec();
}