akregator/src/librss
testlibrss.h00001 #ifndef TESTLIBRSS_H
00002 #define TESTLIBRSS_H
00003
00004 #include <qobject.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 QObject
00016 {
00017 Q_OBJECT
00018 public:
00019 void test( const QString &url );
00020
00021 private slots:
00022 void slotLoadingComplete( Loader *loader, Document doc, Status status );
00023 };
00024
00025 #endif
|