kontact
akregator_partiface_stub.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef __AKREGATOR_PARTIFACE_STUB__
00010 #define __AKREGATOR_PARTIFACE_STUB__
00011
00012 #include <dcopstub.h>
00013 #include <kurl.h>
00014 #include <qstringlist.h>
00015 #include <dcopobject.h>
00016
00017 namespace Akregator {
00018
00019 class AkregatorPartIface_stub : virtual public DCOPStub
00020 {
00021 public:
00022 AkregatorPartIface_stub( const QCString& app, const QCString& id );
00023 AkregatorPartIface_stub( DCOPClient* client, const QCString& app, const QCString& id );
00024 explicit AkregatorPartIface_stub( const DCOPRef& ref );
00025 virtual void openStandardFeedList();
00026 virtual void fetchFeedUrl( const QString& );
00027 virtual void fetchAllFeeds();
00028 virtual void saveSettings();
00029 virtual void addFeedsToGroup( const QStringList& , const QString& );
00030 virtual void exportFile( const KURL& url );
00031 virtual void addFeed();
00032 protected:
00033 AkregatorPartIface_stub() : DCOPStub( never_use ) {}
00034 };
00035
00036 }
00037
00038 #endif
|