File indexing completed on 2024-06-23 05:18:34

0001 /*
0002   SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
0003 
0004   SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "messagecomposer_export.h"
0010 
0011 #include <QObject>
0012 
0013 #include <KMime/Headers>
0014 
0015 namespace MessageComposer
0016 {
0017 /**
0018  * @brief The MessagePart class
0019  */
0020 class MESSAGECOMPOSER_EXPORT MessagePart : public QObject
0021 {
0022     Q_OBJECT
0023 
0024 public:
0025     explicit MessagePart(QObject *parent = nullptr);
0026     ~MessagePart() override;
0027 };
0028 }