File indexing completed on 2024-04-28 16:30:11

0001 /***************************************************************************
0002  * SPDX-FileCopyrightText: 2022 S. MANKOWSKI stephane@mankowski.fr
0003  * SPDX-FileCopyrightText: 2022 G. DE BURE support@mankowski.fr
0004  * SPDX-License-Identifier: GPL-3.0-or-later
0005  ***************************************************************************/
0006 /** @file
0007 * This file is a plugin interface default implementation.
0008 *
0009 * @author Stephane MANKOWSKI / Guillaume DE BURE
0010  */
0011 #include "skgimportplugin.h"
0012 
0013 SKGImportPlugin::SKGImportPlugin(QObject* iImporter)
0014     : QObject(), m_importer(qobject_cast< SKGImportExportManager * >(iImporter))
0015 {}
0016 SKGImportPlugin::~SKGImportPlugin()
0017     = default;
0018 
0019