File indexing completed on 2024-04-14 05:35:12

0001 /*
0002     SPDX-FileCopyrightText: 2011-2012 Ni Hui <shuizhuyuanluo@126.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #ifndef POCREATOR_H
0008 #define POCREATOR_H
0009 
0010 #include <KIO/ThumbnailCreator>
0011 
0012 class PoCreator : public KIO::ThumbnailCreator
0013 {
0014     public:
0015         PoCreator(QObject *parent, const QVariantList &args);
0016         ~PoCreator() override;
0017         KIO::ThumbnailResult create( const KIO::ThumbnailRequest &request ) override;
0018 };
0019 
0020 #endif // POCREATOR_H