File indexing completed on 2024-05-12 16:06:44

0001 /*
0002     SPDX-FileCopyrightText: 2008 Ely Levy <elylevy@cs.huji.ac.il>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #ifndef OKULAR_GENERATOR_MOBI_H
0007 #define OKULAR_GENERATOR_MOBI_H
0008 #include <core/textdocumentgenerator.h>
0009 
0010 class MobiGenerator : public Okular::TextDocumentGenerator
0011 {
0012     Q_OBJECT
0013     Q_INTERFACES(Okular::Generator)
0014 
0015 public:
0016     MobiGenerator(QObject *parent, const QVariantList &args);
0017     ~MobiGenerator() override
0018     {
0019     }
0020 
0021     // [INHERITED] reparse configuration
0022     void addPages(KConfigDialog *dlg) override;
0023 };
0024 
0025 #endif