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

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