You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
548 B
25 lines
548 B
/* |
|
SPDX-FileCopyrightText: 2008 Ely Levy <elylevy@cs.huji.ac.il> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
#ifndef OKULAR_GENERATOR_MOBI_H |
|
#define OKULAR_GENERATOR_MOBI_H |
|
#include <core/textdocumentgenerator.h> |
|
|
|
class MobiGenerator : public Okular::TextDocumentGenerator |
|
{ |
|
Q_OBJECT |
|
Q_INTERFACES(Okular::Generator) |
|
|
|
public: |
|
MobiGenerator(QObject *parent, const QVariantList &args); |
|
~MobiGenerator() override |
|
{ |
|
} |
|
|
|
// [INHERITED] reparse configuration |
|
void addPages(KConfigDialog *dlg) override; |
|
}; |
|
|
|
#endif
|
|
|