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.
26 lines
308 B
26 lines
308 B
15 years ago
|
#ifndef TEST_H
|
||
|
#define TEST_H
|
||
|
|
||
|
#include <qobject.h>
|
||
|
#include <libkcddb/client.h>
|
||
|
|
||
|
using namespace KCDDB;
|
||
|
|
||
|
class AsyncHTTPSubmitTest : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
AsyncHTTPSubmitTest();
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
void slotFinished(CDDB::Result);
|
||
|
|
||
|
private:
|
||
|
|
||
|
KCDDB::Client * client_;
|
||
|
};
|
||
|
|
||
|
#endif
|