Purpose

nextcloudjob.h
1/*
2 SPDX-FileCopyrightText: 2017 Lim Yuen Hoe <yuenhoe86@gmail.com>
3
4 SPDX-License-Identifier: LGPL-2.1-or-later
5*/
6
7#ifndef NEXTCLOUDJOB_H
8#define NEXTCLOUDJOB_H
9
10#include <QString>
11#include <QUrl>
12#include <purpose/pluginbase.h>
13
14class NextcloudJob : public Purpose::Job
15{
17public:
18 NextcloudJob(QObject *parent)
19 : Purpose::Job(parent)
20 {
21 }
22 void start() override;
23
24private Q_SLOTS:
25 void gotCredentials(KJob *job);
26};
27#endif /* NEXTCLOUDJOB_H */
Job that will actually perform the sharing.
Definition job.h:34
Q_OBJECTQ_OBJECT
Q_SLOTSQ_SLOTS
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:05 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.