#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::tqStatus;

class Tester : public TQObject
{
	Q_OBJECT
  TQ_OBJECT
	public:
		void test();

	private slots:
		void slotLoadingComplete( Loader *loader, Document doc, tqStatus status );
};

#endif