File indexing completed on 2024-04-21 04:54:19

0001 /*
0002     SPDX-FileCopyrightText: 2003 Richard Lärkäng <nouseforaname@home.se>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef SYNCHTTPSUBMIT_H
0008 #define SYNCHTTPSUBMIT_H
0009 
0010 #include "httpsubmit.h"
0011 
0012 namespace KCDDB
0013 {
0014   class SyncHTTPSubmit : public HTTPSubmit
0015   {
0016     public:
0017       SyncHTTPSubmit(const QString& from, const QString& hostname, uint port);
0018       virtual ~SyncHTTPSubmit();
0019 
0020     protected:
0021       Result runJob(KIO::Job* job) override;
0022   } ;
0023 }
0024 
0025 #endif // SYNCHTTPSUBMIT_H