summaryrefslogtreecommitdiffstats
path: root/libkcddb/test/asyncsmtpsubmittest.h
blob: 3528798dd91005811c2d77ab735accb7b2e681d7 (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
#ifndef TEST_H
#define TEST_H

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

using namespace KCDDB;

class AsyncSMTPSubmitTest : public QObject
{
  Q_OBJECT

  public:
    AsyncSMTPSubmitTest();

  public slots:

    void slotFinished(CDDB::Result);

  private:

    KCDDB::Client * client_;
};

#endif