00001 /*************************************************************************** 00002 main.cpp - description 00003 ------------------- 00004 begin : Sam Jan 19 13:37:57 CET 2002 00005 copyright : (C) 2002 by Jörg Thönnissen 00006 email : joe@dsite.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #include "portable.h" 00019 00020 #if defined( KDE2_PORT ) 00021 #include <kcmdlineargs.h> 00022 #include <kaboutdata.h> 00023 #include <klocale.h> 00024 #elif defined( QPE_PORT ) 00025 #include <opie2/oapplicationfactory.h> 00026 #endif 00027 00028 #include "kpacman.h" 00029 00030 #ifdef KDE2_PORT 00031 static const char *description = 00032 I18N_NOOP("Kpacman"); 00033 // INSERT A DESCRIPTION FOR YOUR APPLICATION HERE 00034 00035 00036 static KCmdLineOptions options[] = 00037 { 00038 { 0, 0, 0 } 00039 // INSERT YOUR COMMANDLINE OPTIONS HERE 00040 }; 00041 #endif 00042 00043 OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<Kpacman> )
1.4.2