/*************************************************************************** * Copyright (C) 2004-2005 by Albert Astals Cid * * tsdgeos@terra.es * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * ***************************************************************************/ #include #include #include #include #include "kgeography.h" int main(int argc, char *argv[]) { KAboutData about("kgeography", 0, ki18n("KGeography"), "0.5.9-l0", ki18n("A geography learning program"), KAboutData::License_GPL, ki18n("© 2004-2005 Albert Astals Cid"), KLocalizedString(), "http://kgeography.berlios.de"); about.addAuthor(ki18n("Albert Astals Cid"), ki18n("Programmer and designer"), "tsdgeos@terra.es"); about.addCredit(ki18n("Sodipodi flags collection"), ki18n("Got some flags from it"), 0, "http://www.sodipodi.com/index.php3?section=clipart/flags"); KCmdLineArgs::init(argc, argv, &about); KApplication app; app.setTopWidget(new kgeography()); return app.exec(); }