00001 /* 00002 * addresspluginimpl.h 00003 * 00004 * copyright : (c) 2003 by Stefan Eilers 00005 * email : eilers.stefan@epost.de 00006 * 00007 * This implementation was derived from the todolist plugin implementation 00008 * 00009 */ 00010 /*************************************************************************** 00011 * * 00012 * This program is free software; you can redistribute it and/or modify * 00013 * it under the terms of the GNU General Public License as published by * 00014 * the Free Software Foundation; either version 2 of the License, or * 00015 * (at your option) any later version. * 00016 * * 00017 ***************************************************************************/ 00018 00019 #ifndef ADDRESSBOOK_PLUGIN_IMPL_H 00020 #define ADDRESSBOOK_PLUGIN_IMPL_H 00021 00022 #include <opie2/todayplugininterface.h> 00023 00024 class AddressBookPlugin; 00025 00026 class AddressBookPluginImpl : public TodayPluginInterface{ 00027 00028 public: 00029 AddressBookPluginImpl(); 00030 virtual ~AddressBookPluginImpl(); 00031 00032 QRESULT queryInterface( const QUuid &, QUnknownInterface** ); 00033 Q_REFCOUNT 00034 00035 virtual TodayPluginObject *guiPart(); 00036 00037 private: 00038 AddressBookPlugin *addressbookPlugin; 00039 }; 00040 00041 #endif
1.4.2