1 | /* |
2 | SPDX-FileCopyrightText: 2010 Frederik Gladhorn <gladhorn@kde.org> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
5 | */ |
6 | |
7 | #ifndef ATTICA_LICENSE_PARSER_H |
8 | #define ATTICA_LICENSE_PARSER_H |
9 | |
10 | #include "license.h" |
11 | #include "parser.h" |
12 | |
13 | namespace Attica |
14 | { |
15 | class Q_DECL_HIDDEN License::Parser : public Attica::Parser<License> |
16 | { |
17 | private: |
18 | License parseXml(QXmlStreamReader &xml) override; |
19 | QStringList xmlElement() const override; |
20 | }; |
21 | |
22 | } |
23 | |
24 | #endif |
25 | |