File indexing completed on 2024-04-14 04:49:15

0001 /*
0002     SPDX-FileCopyrightText: 2004 Richard Lärkäng <nouseforaname@home.se>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef TEST_H
0008 #define TEST_H
0009 
0010 #include <QObject>
0011 #include "libkcddb/client.h"
0012 
0013 using namespace KCDDB;
0014 
0015 class QCoreApplication;
0016 
0017 class AsyncHTTPSubmitTest : public QObject
0018 {
0019   Q_OBJECT
0020 
0021   public:
0022     AsyncHTTPSubmitTest(QCoreApplication& app);
0023 
0024   public Q_SLOTS:
0025 
0026     void slotFinished(KCDDB::Result);
0027 
0028   private:
0029 
0030     QCoreApplication& app_;
0031     KCDDB::Client * client_;
0032 };
0033 
0034 #endif