File indexing completed on 2024-04-28 04:58:03

0001 /*
0002     SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-KDE-Accepted-GPL
0003     SPDX-FileCopyrightText: 2020 Stefan BrĂ¼ns <stefan.bruens@rwth-aachen.de>
0004 */
0005 
0006 #ifndef DJVUCREATOR_H__
0007 #define DJVUCREATOR_H__
0008 
0009 #include <KIO/ThumbnailCreator>
0010 
0011 class DjVuCreator : public KIO::ThumbnailCreator
0012 {
0013     Q_OBJECT
0014 public:
0015     DjVuCreator(QObject *parent, const QVariantList &args);
0016 
0017     KIO::ThumbnailResult create(const KIO::ThumbnailRequest &request) override;
0018 };
0019 
0020 #endif