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