File indexing completed on 2024-06-23 05:19:20

0001 /*
0002    SPDX-FileCopyrightText: 2016 Sandro Knauß <sknauss@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "interfaces/bodypart.h"
0010 #include "interfaces/bodypartformatter.h"
0011 
0012 namespace MimeTreeParser
0013 {
0014 class TextHtmlBodyPartFormatter : public Interface::BodyPartFormatter
0015 {
0016     static const TextHtmlBodyPartFormatter *self;
0017 
0018 public:
0019     [[nodiscard]] MessagePartPtr process(Interface::BodyPart &part) const override;
0020     static const Interface::BodyPartFormatter *create();
0021 };
0022 }