akregator/src/librss

testlibrss.h
1#ifndef TESTLIBRSS_H
2#define TESTLIBRSS_H
3
4#include <tqobject.h>
5
6#include "loader.h"
7#include "document.h"
8#include "article.h"
9#include "global.h"
10
11using RSS::Loader;
12using RSS::Document;
13using RSS::Status;
14
15class Tester : public TQObject
16{
17 TQ_OBJECT
18
19 public:
20 void test( const TQString &url );
21
22 private slots:
23 void slotLoadingComplete( Loader *loader, Document doc, Status status );
24};
25
26#endif
Represents a RSS document and provides all the features and properties as stored in it.
Definition: document.h:32
This class is the preferred way of loading RSS files.
Definition: loader.h:258