File indexing completed on 2024-04-14 03:49:31

0001 /*
0002     This file is part of KDE.
0003 
0004     SPDX-FileCopyrightText: 2010 Intel Corporation
0005     SPDX-FileContributor: Mateu Batle Sastre <mbatle@collabora.co.uk>
0006 
0007     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0008 */
0009 
0010 #ifndef ATTICA_COMMENTPARSER_H
0011 #define ATTICA_COMMENTPARSER_H
0012 
0013 #include "comment.h"
0014 #include "parser.h"
0015 
0016 namespace Attica
0017 {
0018 class Q_DECL_HIDDEN Comment::Parser : public Attica::Parser<Comment>
0019 {
0020 private:
0021     Comment parseXml(QXmlStreamReader &xml) override;
0022     QList<Comment> parseXmlChildren(QXmlStreamReader &xml);
0023     QStringList xmlElement() const override;
0024 };
0025 
0026 }
0027 
0028 #endif