File indexing completed on 2024-05-12 16:43:40

0001 /*
0002     SPDX-FileCopyrightText: 2008 Thomas Baumgart <ipwizard@users.sourceforge.net>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 // ----------------------------------------------------------------------------
0007 // QT Includes
0008 
0009 // ----------------------------------------------------------------------------
0010 // KDE Includes
0011 
0012 // ----------------------------------------------------------------------------
0013 // Project Includes
0014 
0015 #include "importinterface.h"
0016 
0017 KMyMoneyPlugin::ImportInterface::ImportInterface(QObject* parent, const char* name) :
0018     QObject(parent)
0019 {
0020     setObjectName(name);
0021 }
0022 
0023 KMyMoneyPlugin::ImportInterface::~ImportInterface()
0024 {
0025 }