Page MenuHome GnuPG

bodypartformatter.cpp
No OneTemporary

bodypartformatter.cpp

// SPDX-FileCopyrightText: 2016 Sandro Knauß <sknauss@kde.org>
// SPDX-License-Identifier: LGPL-2.0-or-later
#include "bodypartformatter.h"
using namespace MimeTreeParser::Interface;
namespace MimeTreeParser
{
namespace Interface
{
MessagePart::Ptr BodyPartFormatter::process(ObjectTreeParser *otp, KMime::Content *node) const
{
Q_UNUSED(otp)
Q_UNUSED(node)
return {};
}
QList<MessagePart::Ptr> BodyPartFormatter::processList(ObjectTreeParser *otp, KMime::Content *node) const
{
if (auto p = process(otp, node)) {
return {p};
}
return {};
}
}
}

File Metadata

Mime Type
text/x-c++
Expires
Sun, Feb 22, 6:42 PM (1 d, 13 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a0/2e/9d011e13a47e7171f945522e4d0c

Event Timeline