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

0001 /*
0002     SPDX-FileCopyrightText: 2007 Tobias Koenig <tokoe@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef _OKULAR_GENERATOR_FB_H_
0008 #define _OKULAR_GENERATOR_FB_H_
0009 
0010 #include <core/textdocumentgenerator.h>
0011 
0012 class FictionBookGenerator : public Okular::TextDocumentGenerator
0013 {
0014     Q_OBJECT
0015     Q_INTERFACES(Okular::Generator)
0016 
0017 public:
0018     FictionBookGenerator(QObject *parent, const QVariantList &args);
0019 
0020     // [INHERITED] reparse configuration
0021     void addPages(KConfigDialog *dlg) override;
0022 };
0023 
0024 #endif