summaryrefslogtreecommitdiffstats
path: root/plugins/rssfeed/rss/testlibrss.h
blob: c65fa3bd2797790414781b9ca62356d6137a0682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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