summaryrefslogtreecommitdiffstats
path: root/kgeography/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kgeography/src/main.cpp')
-rw-r--r--kgeography/src/main.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/kgeography/src/main.cpp b/kgeography/src/main.cpp
new file mode 100644
index 00000000..e7b9d6ab
--- /dev/null
+++ b/kgeography/src/main.cpp
@@ -0,0 +1,37 @@
+/***************************************************************************
+ * 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 <kaboutdata.h>
+#include <kapplication.h>
+#include <kcmdlineargs.h>
+
+#include "kgeography.h"
+
+int main(int argc, char *argv[])
+{
+ KAboutData about("kgeography", I18N_NOOP("KGeography"), "0.4.4", I18N_NOOP("A geography learning program"), KAboutData::License_GPL, "© 2004-2005 Albert Astals Cid", 0, "http://kgeography.berlios.de");
+ about.addAuthor("Albert Astals Cid", I18N_NOOP("Programmer and designer"), "tsdgeos@terra.es");
+ about.addCredit("Danny Allen", I18N_NOOP("Small refinements"), "danny@dannyallen.co.uk");
+ about.addCredit("Giuseppe Caruso", I18N_NOOP("Italy flags and Italy by provinces map"), "caruso@pietrobo.com");
+ about.addCredit("Melody Fink", I18N_NOOP("Map contributor"));
+ about.addCredit("Mikolaj Machowski", I18N_NOOP("Map contributor"));
+ about.addCredit("Ed Montgomery", I18N_NOOP("Map contributor"));
+ about.addCredit("Justin Morgan", I18N_NOOP("Map contributor"));
+ about.addCredit("Frank Mutsaers", I18N_NOOP("Map contributor"));
+ about.addCredit("Maurizio Paolini", I18N_NOOP("Map contributor"));
+ about.addCredit("Yann Verley", I18N_NOOP("Contributed some maps and map generation tools"), "yann.verley@free.fr");
+ about.addCredit(I18N_NOOP("Sodipodi flags collection"), I18N_NOOP("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();
+}