00001 /* 00002 * examplepluginimpl.h 00003 * 00004 * email : harlekin@handhelds.org 00005 * 00006 */ 00007 00008 #ifndef EXAMPLE_PLUGIN_IMPL_H 00009 #define EXAMPLE_PLUGIN_IMPL_H 00010 00011 #include <opie2/todayplugininterface.h> 00012 00013 class ExamplePlugin; 00014 00015 class ExamplePluginImpl : public TodayPluginInterface{ 00016 00017 public: 00018 ExamplePluginImpl(); 00019 virtual ~ExamplePluginImpl(); 00020 00021 QRESULT queryInterface( const QUuid &, QUnknownInterface** ); 00022 Q_REFCOUNT 00023 00024 virtual TodayPluginObject *guiPart(); 00025 00026 private: 00027 ExamplePlugin *examplePlugin; 00028 }; 00029 00030 #endif
1.4.2