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

0001 /*
0002     SPDX-FileCopyrightText: 2013 Azat Khuzhin <a3at.mail@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef _GENERATOR_TXT_H_
0008 #define _GENERATOR_TXT_H_
0009 
0010 #include <core/textdocumentgenerator.h>
0011 
0012 class TxtGenerator : public Okular::TextDocumentGenerator
0013 {
0014     Q_OBJECT
0015     Q_INTERFACES(Okular::Generator)
0016 
0017 public:
0018     TxtGenerator(QObject *parent, const QVariantList &args);
0019     ~TxtGenerator() override
0020     {
0021     }
0022 
0023     void addPages(KConfigDialog *dlg) override;
0024 };
0025 
0026 #endif