KDAV

davitemfetchjob.h
1/*
2 SPDX-FileCopyrightText: 2010 Tobias Koenig <tokoe@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef KDAV_DAVITEMFETCHJOB_H
8#define KDAV_DAVITEMFETCHJOB_H
9
10#include "kdav_export.h"
11
12#include "davitem.h"
13#include "davjobbase.h"
14#include "davurl.h"
15
16namespace KDAV
17{
18class DavItemFetchJobPrivate;
19
20/**
21 * @class DavItemFetchJob davitemfetchjob.h <KDAV/DavItemFetchJob>
22 *
23 * @short A job that fetches a DAV item from the DAV server.
24 */
25class KDAV_EXPORT DavItemFetchJob : public DavJobBase
26{
27 Q_OBJECT
28
29public:
30 /**
31 * Creates a new DAV item fetch job.
32 *
33 * @param item The item that shall be fetched.
34 * @param parent The parent object.
35 */
36 explicit DavItemFetchJob(const DavItem &item, QObject *parent = nullptr);
37
38 /**
39 * Starts the job.
40 */
41 void start() override;
42
43 /**
44 * Returns the fetched item including current ETag information.
45 */
46 Q_REQUIRED_RESULT DavItem item() const;
47
48private:
49 Q_DECLARE_PRIVATE(DavItemFetchJob)
50};
51}
52
53#endif
A job that fetches a DAV item from the DAV server.
A helper class to store information about DAV resources.
Definition davitem.h:39
base class for the jobs used by the resource.
Definition davjobbase.h:27
Q_SCRIPTABLE Q_NOREPLY void start()
The KDAV namespace.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:16:34 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.