KCDDB

synchttpsubmit.h
1/*
2 SPDX-FileCopyrightText: 2003 Richard Lärkäng <nouseforaname@home.se>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef SYNCHTTPSUBMIT_H
8#define SYNCHTTPSUBMIT_H
9
10#include "httpsubmit.h"
11
12namespace KCDDB
13{
14 class SyncHTTPSubmit : public HTTPSubmit
15 {
16 public:
17 SyncHTTPSubmit(const QString& from, const QString& hostname, uint port);
18 virtual ~SyncHTTPSubmit();
19
20 protected:
21 Result runJob(KIO::Job* job) override;
22 } ;
23}
24
25#endif // SYNCHTTPSUBMIT_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:58 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.