File indexing completed on 2024-04-21 05:50:23

0001 /***************************************************************************
0002                           main.cpp  -  main program
0003                              -------------------
0004     begin                : lun nov 13 11:22:05 CET 2006
0005     copyright            : (C) 2006-2022 by Éric Bischoff
0006     email                : bischoff@kde.org
0007  ***************************************************************************/
0008 
0009 /***************************************************************************
0010  *                                                                         *
0011  *   This program is free software; you can redistribute it and/or modify  *
0012  *   it under the terms of the GNU General Public License as published by  *
0013  *   the Free Software Foundation; either version 2 of the License, or     *
0014  *   (at your option) any later version.                                   *
0015  *                                                                         *
0016  ***************************************************************************/
0017 
0018 #include <stdio.h>
0019 #include <QCoreApplication>
0020 
0021 #include <KAboutData>
0022 #include <KLocalizedString>
0023 
0024 #include "converter.h"
0025 
0026 int main(int argc, char *argv[])
0027 {
0028     QCoreApplication a(argc, argv);
0029     KAboutData aboutData("curconvd", i18n("CurConvD"), "1.3.2", i18n("A currency converter daemon"),
0030                  KAboutLicense::GPL, i18n("(c) 2006-2022, the curconvd developers"), i18n("A program by Éric Bischoff <bischoff@kde.org>\n\nTime Genie exchange rates courtesy of <a href='http://www.timegenie.com/' title='foreign exchange rates courtesy of Time Genie'>Time Genie</a>\n"));
0031 
0032     aboutData.addAuthor(i18n("Éric Bischoff"), i18n("Design and implementation"), "bischoff@kde.org");
0033 
0034     KAboutData::setApplicationData(aboutData);
0035     new CurrencyConverter();
0036 
0037     return a.exec();
0038 }