File indexing completed on 2024-05-12 08:17:48

0001 /***************************************************************************
0002  *   Copyright (C) 2008 by Jakub Stachowski <qbast@go2.pl>                 *
0003  *                                                                         *
0004  *   This program is free software; you can redistribute it and/or modify  *
0005  *   it under the terms of the GNU General Public License as published by  *
0006  *   the Free Software Foundation; either version 2 of the License, or     *
0007  *   (at your option) any later version.                                   *
0008  ***************************************************************************/
0009 
0010 #ifndef MOBITHUMBNAIL_H
0011 #define MOBITHUMBNAIL_H
0012 
0013 #include <KIO/ThumbnailCreator>
0014 
0015 class MobiThumbnail : public KIO::ThumbnailCreator
0016 {
0017 public:
0018     MobiThumbnail(QObject *parent, const QVariantList &args);
0019     KIO::ThumbnailResult create(const KIO::ThumbnailRequest &request) override;
0020 };
0021 
0022 #endif