File indexing completed on 2024-09-15 11:53:40
0001 /* 0002 SPDX-FileCopyrightText: 2010 Frederik Gladhorn <gladhorn@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 0007 #ifndef ATTICA_LICENSE_PARSER_H 0008 #define ATTICA_LICENSE_PARSER_H 0009 0010 #include "license.h" 0011 #include "parser.h" 0012 0013 namespace Attica 0014 { 0015 class Q_DECL_HIDDEN License::Parser : public Attica::Parser<License> 0016 { 0017 private: 0018 License parseXml(QXmlStreamReader &xml) override; 0019 QStringList xmlElement() const override; 0020 }; 0021 0022 } 0023 0024 #endif