summaryrefslogtreecommitdiffstats
path: root/tests/manual/qglyphruns/main.cpp
blob: 0f192e051f8feb79c816b1380439dd752bea6a77 (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

#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"