You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
398 B
26 lines
398 B
15 years ago
|
#ifndef TESTLIBRSS_H
|
||
|
#define TESTLIBRSS_H
|
||
|
|
||
|
#include <qobject.h>
|
||
|
|
||
|
#include "loader.h"
|
||
|
#include "document.h"
|
||
|
#include "article.h"
|
||
|
#include "global.h"
|
||
|
|
||
|
using RSS::Loader;
|
||
|
using RSS::Document;
|
||
|
using RSS::Status;
|
||
|
|
||
|
class Tester : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
void test( const QString &url );
|
||
|
|
||
|
private slots:
|
||
|
void slotLoadingComplete( Loader *loader, Document doc, Status status );
|
||
|
};
|
||
|
|
||
|
#endif
|