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.
tdenetwork/librss/testlibrss.h

26 lines
363 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
{
TQ_OBJECT
public:
void test();
private slots:
void slotLoadingComplete( Loader *loader, Document doc, Status status );
};
#endif