File indexing completed on 2023-05-30 09:17:31
0001 /** 0002 * SPDX-FileCopyrightText: 2020 Aniket Kumar <anikketkumar786@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0005 */ 0006 0007 #include "attachmentinfo.h" 0008 0009 AttachmentInfo::AttachmentInfo() 0010 { 0011 } 0012 0013 AttachmentInfo::AttachmentInfo(const Attachment &attachment) 0014 : m_partID(attachment.partID()) 0015 , m_mimeType(attachment.mimeType()) 0016 , m_uniqueIdentifier(attachment.uniqueIdentifier()) 0017 { 0018 }