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

0001 
0002 /*
0003  *   This file is part of the KDE KIO-Extras project
0004  *   SPDX-FileCopyrightText: 2009 Vytautas Mickus <vmickus@gmail.com>
0005  *   SPDX-FileCopyrightText: 2016 Anthony Fieroni <bvbfan@abv.com>
0006  *
0007  *   SPDX-License-Identifier: LGPL-2.1-only
0008  */
0009 
0010 #ifndef _AUDIO_CREATOR_H_
0011 #define _AUDIO_CREATOR_H_
0012 
0013 #include <KIO/ThumbnailCreator>
0014 #include <QObject>
0015 
0016 class AudioCreator : public KIO::ThumbnailCreator
0017 {
0018     Q_OBJECT
0019 public:
0020     AudioCreator(QObject *parent, const QVariantList &args);
0021     ~AudioCreator() override;
0022     KIO::ThumbnailResult create(const KIO::ThumbnailRequest &request) override;
0023 };
0024 
0025 #endif // _AUDIO_CREATOR_H_