File indexing completed on 2024-04-14 03:49:33

0001 /*
0002     This file is part of KDE.
0003 
0004     SPDX-FileCopyrightText: 2008 Cornelius Schumacher <schumacher@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #ifndef ATTICA_PERSONPARSER_H
0010 #define ATTICA_PERSONPARSER_H
0011 
0012 #include "parser.h"
0013 #include "person.h"
0014 
0015 #include "attica_export.h"
0016 
0017 namespace Attica
0018 {
0019 // exported for autotest
0020 class ATTICA_EXPORT Person::Parser : public Attica::Parser<Person>
0021 {
0022 private:
0023     Person parseXml(QXmlStreamReader &xml) override;
0024     QStringList xmlElement() const override;
0025 };
0026 
0027 }
0028 
0029 #endif