File indexing completed on 2024-12-22 04:28:24

0001 /*
0002   SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004   SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "speechtotext/widgets/speechtotextconfiguredialog.h"
0008 #include <QApplication>
0009 #include <QCommandLineParser>
0010 #include <QStandardPaths>
0011 
0012 int main(int argc, char **argv)
0013 {
0014     QApplication app(argc, argv);
0015     QStandardPaths::setTestModeEnabled(true);
0016     QCommandLineParser parser;
0017     parser.addVersionOption();
0018     parser.addHelpOption();
0019     parser.process(app);
0020 
0021     auto w = new TextSpeechToText::SpeechToTextConfigureDialog();
0022     w->show();
0023     app.exec();
0024     delete w;
0025     return 0;
0026 }