00001 /* 00002 * todopluginimpl.h 00003 * 00004 * copyright : (c) 2002 by Maximilian Reiß 00005 * email : harlekin@handhelds.org 00006 * 00007 */ 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 00017 #ifndef FORTUNE_PLUGIN_IMPL_H 00018 #define FORTUNE_PLUGIN_IMPL_H 00019 00020 #include <opie2/todayplugininterface.h> 00021 00022 class FortunePlugin; 00023 00024 class FortunePluginImpl : public TodayPluginInterface 00025 { 00026 00027 public: 00028 FortunePluginImpl(); 00029 virtual ~FortunePluginImpl(); 00030 00031 QRESULT queryInterface( const QUuid &, QUnknownInterface** ); 00032 Q_REFCOUNT 00033 00034 virtual TodayPluginObject *guiPart(); 00035 00036 private: 00037 FortunePlugin *fortunePlugin; 00038 }; 00039 00040 #endif
1.4.2