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
362 B
26 lines
362 B
#ifndef TESTLIBRSS_H
|
|
#define TESTLIBRSS_H
|
|
|
|
#include <tqobject.h>
|
|
|
|
#include "loader.h"
|
|
#include "document.h"
|
|
#include "global.h"
|
|
|
|
using RSS::Loader;
|
|
using RSS::Document;
|
|
using RSS::Status;
|
|
|
|
class Tester : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
void test();
|
|
|
|
private slots:
|
|
void slotLoadingComplete( Loader *loader, Document doc, Status status );
|
|
};
|
|
|
|
#endif
|