akregator/src/librss

testlibrss.h
00001 #ifndef TESTLIBRSS_H
00002 #define TESTLIBRSS_H
00003 
00004 #include <tqobject.h>
00005 
00006 #include "loader.h"
00007 #include "document.h"
00008 #include "article.h"
00009 #include "global.h"
00010 
00011 using RSS::Loader;
00012 using RSS::Document;
00013 using RSS::Status;
00014 
00015 class Tester : public TQObject
00016 {
00017     Q_OBJECT
00018   TQ_OBJECT
00019     public:
00020         void test( const TQString &url );
00021 
00022     private slots:
00023         void slotLoadingComplete( Loader *loader, Document doc, Status status );
00024 };
00025 
00026 #endif