File indexing completed on 2024-12-29 04:54:49

0001 /*
0002    SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include <QApplication>
0008 #include <QCommandLineParser>
0009 #include <QStandardPaths>
0010 
0011 #include "../sievescriptdebuggerdialog.h"
0012 
0013 int main(int argc, char **argv)
0014 {
0015     QApplication app(argc, argv);
0016     QStandardPaths::setTestModeEnabled(true);
0017     QCommandLineParser parser;
0018     parser.addVersionOption();
0019     parser.addHelpOption();
0020     parser.process(app);
0021     KSieveUi::SieveScriptDebuggerDialog dlg;
0022     return dlg.exec();
0023 }