00001 /* 00002 * stocktickerpluginimpl.h 00003 * 00004 * copyright : (c) 2002 by L.J. Potter 00005 * email : llornkcor@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 STOCKTICKER_PLUGIN_IMPL_H 00018 #define STOCKTICKER_PLUGIN_IMPL_H 00019 00020 #include <opie2/todayplugininterface.h> 00021 00022 class StockTickerPlugin; 00023 00024 class StockTickerPluginImpl : public TodayPluginInterface{ 00025 00026 public: 00027 StockTickerPluginImpl(); 00028 virtual ~StockTickerPluginImpl(); 00029 00030 QRESULT queryInterface( const QUuid &, QUnknownInterface** ); 00031 Q_REFCOUNT 00032 00033 virtual TodayPluginObject *guiPart(); 00034 00035 private: 00036 StockTickerPlugin *stocktickerPlugin; 00037 }; 00038 00039 #endif
1.4.2