2020-08-09 20:00:57 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2020 Aniket Kumar <anikketkumar786@gmail.com>
|
2020-08-09 20:00:57 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2020-08-09 20:00:57 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "attachmentinfo.h"
|
|
|
|
|
|
|
|
AttachmentInfo::AttachmentInfo()
|
2022-09-10 22:23:52 +01:00
|
|
|
{
|
|
|
|
}
|
2020-08-09 20:00:57 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
AttachmentInfo::AttachmentInfo(const Attachment &attachment)
|
|
|
|
: m_partID(attachment.partID())
|
|
|
|
, m_mimeType(attachment.mimeType())
|
|
|
|
, m_uniqueIdentifier(attachment.uniqueIdentifier())
|
|
|
|
{
|
|
|
|
}
|
2023-07-26 09:15:11 +01:00
|
|
|
|
|
|
|
#include "moc_attachmentinfo.cpp"
|