00001 /* 00002 * todopluginimpl.h 00003 * 00004 * copyright : (c) 2002, 2003, 2004 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 TODOLIST_PLUGIN_IMPL_H 00018 #define TODOLIST_PLUGIN_IMPL_H 00019 00020 #include <opie2/todayplugininterface.h> 00021 00022 class TodolistPlugin; 00023 00024 class TodolistPluginImpl : public TodayPluginInterface{ 00025 00026 public: 00027 TodolistPluginImpl(); 00028 virtual ~TodolistPluginImpl(); 00029 00030 QRESULT queryInterface( const QUuid &, QUnknownInterface** ); 00031 Q_REFCOUNT 00032 00033 virtual TodayPluginObject *guiPart(); 00034 00035 private: 00036 TodolistPlugin *todolistPlugin; 00037 }; 00038 00039 #endif
1.4.2