File indexing completed on 2025-07-13 10:50:53
0001 /* This file is part of the KDE project 0002 SPDX-FileCopyrightText: 2000 S.R.Haque <shaheedhaque@hotmail.com> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 0006 DESCRIPTION 0007 */ 0008 0009 #ifndef WMFIMPORT_H 0010 #define WMFIMPORT_H 0011 0012 #include <KoFilter.h> 0013 #include <QVariantList> 0014 0015 class WMFImport : public KoFilter 0016 { 0017 Q_OBJECT 0018 0019 public: 0020 WMFImport(QObject* parent, const QVariantList&); 0021 ~WMFImport() override; 0022 0023 KoFilter::ConversionStatus convert(const QByteArray& from, const QByteArray& to) override; 0024 }; 0025 0026 #endif // WMFIMPORT_H