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

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_DISTRIBUTION_PARSER_H
0011 #define ATTICA_DISTRIBUTION_PARSER_H
0012 
0013 #include "distribution.h"
0014 #include "parser.h"
0015 
0016 namespace Attica
0017 {
0018 class Q_DECL_HIDDEN Distribution::Parser : public Attica::Parser<Distribution>
0019 {
0020 private:
0021     Distribution parseXml(QXmlStreamReader &xml) override;
0022     QStringList xmlElement() const override;
0023 };
0024 
0025 }
0026 
0027 #endif