summaryrefslogtreecommitdiffstats
path: root/tests/manual/qglyphruns/main.cpp
blob: 6f76b66d14a2661916655fbd917d74608c9a07c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "controller.h"

#include <QtWidgets>

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

    Controller controller;
    controller.showMaximized();

    return app.exec();
}

#include "main.moc"