KCDDB

httpsubmit.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 HTTPSUBMIT_H
8#define HTTPSUBMIT_H
9
10#include "submit.h"
11#include <QUrl>
12
13namespace KCDDB
14{
15 class HTTPSubmit : public Submit
16 {
17 public:
18 HTTPSubmit(const QString& from, const QString& hostname, uint port);
19 virtual ~HTTPSubmit();
20
21 protected:
22 KIO::Job* createJob(const CDInfo& cdInfo) override;
23
24 QUrl url_;
25 QString from_;
26 } ;
27}
28
29#endif // HTTPSUBMIT_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.