File indexing completed on 2024-04-21 03:51:33

0001 /*
0002     This file is part of KDE.
0003 
0004     SPDX-FileCopyrightText: 2011 Dan Leinir Turthra Jensen <admin@leinir.dk>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007  */
0008 
0009 #ifndef PUBLISHERFIELDPARSER_H
0010 #define PUBLISHERFIELDPARSER_H
0011 
0012 #include "parser.h"
0013 #include "publisherfield.h"
0014 
0015 namespace Attica
0016 {
0017 class Q_DECL_HIDDEN PublisherField::Parser : public Attica::Parser<PublisherField>
0018 {
0019 private:
0020     PublisherField parseXml(QXmlStreamReader &xml) override;
0021     QStringList xmlElement() const override;
0022 };
0023 
0024 } // namespace Attica
0025 
0026 #endif // PUBLISHERFIELDPARSER_H