blob: 18e18327d1ce3dd126bbe7bba7601b92e7db90bb (
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
26
|
#ifndef TESTLIBRSS_H
#define TESTLIBRSS_H
#include <tqobject.h>
#include "loader.h"
#include "document.h"
#include "article.h"
#include "global.h"
using RSS::Loader;
using RSS::Document;
using RSS::tqStatus;
class Tester : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
void test( const TQString &url );
private slots:
void slotLoadingComplete( Loader *loader, Document doc, tqStatus status );
};
#endif
|