summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/rasterwindow/main.cpp
blob: 576b73112b1add1894c7fbd434084b8d2eabb0d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtGui>
#include "rasterwindow.h"

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

    RasterWindow window;
    window.show();

    return app.exec();
}