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.
tdepim/akregator/src/librss/testlibrss.h

27 lines
404 B

#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::Status;
class Tester : public TQObject
{
Q_OBJECT
public:
void test( const TQString &url );
private slots:
void slotLoadingComplete( Loader *loader, Document doc, Status status );
};
#endif