File indexing completed on 2024-09-22 04:11:11

0001 /*
0002     Kchmviewer - a CHM and EPUB file viewer with broad language support
0003     SPDX-FileCopyrightText: 2004-2014 George Yunaev gyunaev@ulduzsoft.com
0004 
0005     SPDX-License-Identifier: GPL-3.0-or-later
0006 */
0007 
0008 #ifndef HELPERXMLHANDLER_EPUBCONTAINER_H
0009 #define HELPERXMLHANDLER_EPUBCONTAINER_H
0010 
0011 #include <QXmlDefaultHandler>
0012 
0013 class HelperXmlHandler_EpubContainer : public QXmlDefaultHandler
0014 {
0015 public:
0016     // Overridden members
0017     bool startElement(const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts) override;
0018 
0019     // The content path
0020     QString contentPath;
0021 };
0022 
0023 #endif // HELPERXMLHANDLER_EPUBCONTAINER_H