File indexing completed on 2025-07-06 10:22:08

0001 /* This file is part of the KDE project
0002    SPDX-FileCopyrightText: 2002 Ariya Hidayat <ariyahidayat@yahoo.de>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef __DBASEIMPORT_H
0008 #define __DBASEIMPORT_H
0009 
0010 #include <KoFilter.h>
0011 #include <KoStore.h>
0012 #include <QByteArray>
0013 #include <QVariantList>
0014 
0015 class DBaseImport : public KoFilter
0016 {
0017 
0018     Q_OBJECT
0019 
0020 public:
0021 
0022     DBaseImport(QObject *parent, const QVariantList&);
0023     ~DBaseImport() override {}
0024 
0025     KoFilter::ConversionStatus convert(const QByteArray& from, const QByteArray& to) override;
0026 };
0027 
0028 #endif // __DBASEIMPORT_H