Warning, file /libraries/libqaccessibilityclient/examples/accessibleapps/main.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2012 Frederik Gladhorn <gladhorn@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include <QApplication>
0008 
0009 #include "mainwindow.h"
0010 
0011 int main(int argc, char** argv)
0012 {
0013     QApplication app(argc, argv);
0014     app.setApplicationName(QLatin1String("Randamizer"));
0015 
0016     MainWindow window;
0017     window.show();
0018 
0019     return app.exec();
0020 }