diff options
Diffstat (limited to 'librss/testlibrss.h')
-rw-r--r-- | librss/testlibrss.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/librss/testlibrss.h b/librss/testlibrss.h new file mode 100644 index 00000000..2db10178 --- /dev/null +++ b/librss/testlibrss.h @@ -0,0 +1,24 @@ +#ifndef TESTLIBRSS_H +#define TESTLIBRSS_H + +#include <qobject.h> + +#include "loader.h" +#include "document.h" +#include "global.h" + +using RSS::Loader; +using RSS::Document; +using RSS::Status; + +class Tester : public QObject +{ + Q_OBJECT + public: + void test(); + + private slots: + void slotLoadingComplete( Loader *loader, Document doc, Status status ); +}; + +#endif |