File indexing completed on 2024-05-26 04:29:35

0001 /*
0002  *  SPDX-FileCopyrightText: 2015 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef __KIS_ASL_XML_PARSER_H
0008 #define __KIS_ASL_XML_PARSER_H
0009 
0010 #include "kritapsdutils_export.h"
0011 
0012 class QDomDocument;
0013 class KisAslObjectCatcher;
0014 
0015 class KRITAPSDUTILS_EXPORT KisAslXmlParser
0016 {
0017 public:
0018     void parseXML(const QDomDocument &doc, KisAslObjectCatcher &catcher);
0019 };
0020 
0021 #endif /* __KIS_ASL_XML_PARSER_H */