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

0001 /*  This file is part of the KDE libraries
0002     SPDX-FileCopyrightText: 2000 Malte Starostik <malte@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef _IMAGECREATOR_H_
0008 #define _IMAGECREATOR_H_
0009 
0010 #include <QtGlobal>
0011 
0012 #include <KIO/ThumbnailCreator>
0013 
0014 class ImageCreator : public KIO::ThumbnailCreator
0015 {
0016     Q_OBJECT
0017 public:
0018     ImageCreator(QObject *parent, const QVariantList &args);
0019     KIO::ThumbnailResult create(const KIO::ThumbnailRequest &request) override;
0020 };
0021 
0022 #endif