Purpose

youtubejobcomposite.h
1/*
2 SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
3
4 SPDX-License-Identifier: LGPL-2.1-or-later
5*/
6
7#ifndef YOUTUBEJOBCOMPOSITE_H
8#define YOUTUBEJOBCOMPOSITE_H
9
10#include <purpose/job.h>
11
12class YoutubeJobComposite : public Purpose::Job
13{
14public:
15 YoutubeJobComposite();
16
17 void start() override;
18
19private Q_SLOTS:
20 void subjobFinished(KJob *subjob);
21
22private:
23 int m_pendingJobs;
24};
25
26#endif // YOUTUBEJOBCOMPOSITE_H
KJob(QObject *parent=nullptr)
Job that will actually perform the sharing.
Definition job.h:34
Q_SLOTSQ_SLOTS
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 31 2025 11:58:16 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.