2022-06-08 11:50:41 +00:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
2024-02-02 13:36:10 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2022-06-09 11:10:03 +00:00
|
|
|
|
2022-06-08 11:50:41 +00:00
|
|
|
#include <QApplication>
|
2022-06-09 11:10:03 +00:00
|
|
|
#include <QtWidgets>
|
2022-06-08 11:50:41 +00:00
|
|
|
#include "basica11ywidget.h"
|
2022-06-09 11:10:03 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
BasicA11yWidget a11yWidget;
|
|
|
|
a11yWidget.show();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|
2022-06-08 11:50:41 +00:00
|
|
|
|