Messagelib

itipjob.h
1/*
2 SPDX-FileCopyrightText: 2023 Daniel Vrátil <dvratil@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "contentjobbase.h"
10#include "messagecomposer_export.h"
11
12namespace MessageComposer
13{
14class ItipJobPrivate;
15class ItipPart;
16/**
17 * @brief The ItipJob class
18 */
19class MESSAGECOMPOSER_EXPORT ItipJob : public ContentJobBase
20{
21 Q_OBJECT
22
23public:
24 explicit ItipJob(ItipPart *itipPart = nullptr, QObject *parent = nullptr);
25 ~ItipJob() override;
26
27 [[nodiscard]] ItipPart *itipPart() const;
28 void setItipPart(ItipPart *part);
29
30protected Q_SLOTS:
31 void doStart() override;
32 void process() override;
33
34private:
35 Q_DECLARE_PRIVATE(ItipJob)
36};
37}
The ContentJobBase class.
The ItipJob class.
Definition itipjob.h:20
The ItipPart class.
Definition itippart.h:21
Simple interface that both EncryptJob and SignEncryptJob implement so the composer can extract some e...
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:54:19 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.