File indexing completed on 2025-02-16 04:57:41
0001 /* 0002 SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "templateparser_export.h" 0010 #include <QObject> 0011 #include <QString> 0012 struct TEMPLATEPARSER_EXPORT TemplateParserExtractHtmlInfoResult { 0013 void clear(); 0014 QString mBodyElement; 0015 QString mHeaderElement; 0016 QString mHtmlElement; 0017 QString mPlainText; 0018 QString mTemplate; 0019 }; 0020 Q_DECLARE_METATYPE(TemplateParserExtractHtmlInfoResult)