summaryrefslogtreecommitdiffstats
path: root/examples/widgets/qnx/foreignwindows/main.cpp
blob: 55dfc98f01fda441e2d858a713816f1e0382871d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2018 QNX Software Systems. All rights reserved.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QApplication>

#include "collector.h"

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

    Collector collector;
    collector.resize(640, 480);
    collector.show();

    return app.exec();
}