/* This file is part of KDE. SPDX-FileCopyrightText: 2008 Cornelius Schumacher SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ #ifndef ATTICA_CONTENTPARSER_H #define ATTICA_CONTENTPARSER_H #include "content.h" #include "parser.h" namespace Attica { class Q_DECL_HIDDEN Content::Parser : public Attica::Parser { private: Content parseXml(QXmlStreamReader &xml) override; QStringList xmlElement() const override; }; } #endif