diff options
Diffstat (limited to 'libkcddb/test/asynchttplookuptest.h')
-rw-r--r-- | libkcddb/test/asynchttplookuptest.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libkcddb/test/asynchttplookuptest.h b/libkcddb/test/asynchttplookuptest.h new file mode 100644 index 00000000..c8e3e86c --- /dev/null +++ b/libkcddb/test/asynchttplookuptest.h @@ -0,0 +1,27 @@ +#ifndef TEST_H +#define TEST_H + +#include <qobject.h> +#include <libkcddb/client.h> + +using namespace KCDDB; + +class AsyncHTTPLookupTest : public QObject +{ + Q_OBJECT + + public: + + AsyncHTTPLookupTest(); + ~AsyncHTTPLookupTest(); + + public slots: + + void slotFinished(CDDB::Result); + + private: + + KCDDB::Client * client_; +}; + +#endif |