File indexing completed on 2024-05-12 05:06:11

0001 /*
0002     SPDX-FileCopyrightText: 2018 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
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 "appinterface.h"
0016 
0017 KMyMoneyPlugin::AppInterface::AppInterface(QObject* parent, const char* name)
0018     : QObject(parent)
0019 {
0020     setObjectName(name);
0021 }
0022 
0023 KMyMoneyPlugin::AppInterface::~AppInterface()
0024 {
0025 }