summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/rasterwindow/main.cpp
blob: 38921c8c30bcb94e866145ba512f0c8b773da885 (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 BSD-3-Clause
#include <QtGui>
#include "rasterwindow.h"

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

    RasterWindow window;
    window.show();

    return app.exec();
}