summaryrefslogtreecommitdiffstats
path: root/libkcddb/test/asynchttpsubmittest.h
blob: 0a1c8389f093e8074c89a97acd8c59a34f303a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef TEST_H
#define TEST_H

#include <tqobject.h>
#include <libkcddb/client.h>

using namespace KCDDB;

class AsyncHTTPSubmitTest : public TQObject
{
  Q_OBJECT
  TQ_OBJECT

  public:
    AsyncHTTPSubmitTest();

  public slots:

    void slotFinished(CDDB::Result);

  private:

    KCDDB::Client * client_;
};

#endif