File indexing completed on 2026-05-10 12:34:33
0001 /* This file is part of the KDE project 0002 SPDX-FileCopyrightText: 2002 The Karbon Developers 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef __EPSIMPORT_H__ 0008 #define __EPSIMPORT_H__ 0009 0010 #include <QObject> 0011 0012 #include <KoFilter.h> 0013 #include <QVariantList> 0014 0015 class EpsImport : public KoFilter 0016 { 0017 Q_OBJECT 0018 0019 public: 0020 EpsImport(QObject* parent, const QVariantList&); 0021 ~EpsImport() override; 0022 0023 KoFilter::ConversionStatus convert(const QByteArray& from, const QByteArray& to) override; 0024 }; 0025 0026 #endif 0027