File indexing completed on 2024-12-22 04:45:58
0001 /* 0002 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "importexportdata/exportdata/exportdatawizard.h" 0008 #include <QApplication> 0009 #include <QCommandLineParser> 0010 0011 int main(int argc, char **argv) 0012 { 0013 QApplication app(argc, argv); 0014 // Use specific ruqola name for account name 0015 app.setApplicationName(QStringLiteral("ruqola")); 0016 0017 QCommandLineParser parser; 0018 parser.addVersionOption(); 0019 parser.addHelpOption(); 0020 0021 parser.process(app); 0022 auto d = new ExportDataWizard; 0023 d->show(); 0024 0025 return app.exec(); 0026 }