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

0001 /*
0002     SPDX-FileCopyrightText: 2005 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 "viewinterface.h"
0016 
0017 KMyMoneyPlugin::ViewInterface::ViewInterface(QObject* parent, const char* name)
0018     : QObject(parent)
0019 {
0020     setObjectName(name);
0021 }
0022 
0023 KMyMoneyPlugin::ViewInterface::~ViewInterface()
0024 {
0025 }