From bf8b9546a282505b65ba788b198df16348a5abe5 Mon Sep 17 00:00:00 2001 From: Roker Date: Wed, 29 Apr 2020 16:26:24 +0200 Subject: [PATCH] add comment only --- src/attachment.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/attachment.hh b/src/attachment.hh index 65866cd..4ed3efb 100644 --- a/src/attachment.hh +++ b/src/attachment.hh @@ -66,6 +66,8 @@ namespace pEpMIME inline bool is_not_inline(const Attachment& att) { return att.is_inline() == false; } + // serialize all attachments, with the given delimiter + // NOTA BENE: It closes this multipart/* subtree by adding the proper final delimiter. void generate_attachments(std::string& out, const SAttachments& att, sv delimiter, bool(*filter)(const Attachment&) = all); }