File indexing completed on 2024-04-21 14:52:18

0001 /*
0002     This file is part of KDE.
0003 
0004     SPDX-FileCopyrightText: 2008 Cornelius Schumacher <schumacher@kde.org>
0005     SPDX-FileCopyrightText: 2009 Marco Martin <notmart@gmail.com>
0006 
0007     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0008 */
0009 
0010 #ifndef ATTICA_KNOWLEDGEBASEENTRYPARSER_H
0011 #define ATTICA_KNOWLEDGEBASEENTRYPARSER_H
0012 
0013 #include "knowledgebaseentry.h"
0014 #include "parser.h"
0015 
0016 namespace Attica
0017 {
0018 class Q_DECL_HIDDEN KnowledgeBaseEntry::Parser : public Attica::Parser<KnowledgeBaseEntry>
0019 {
0020 private:
0021     KnowledgeBaseEntry parseXml(QXmlStreamReader &xml) override;
0022     QStringList xmlElement() const override;
0023 };
0024 
0025 }
0026 
0027 #endif