KMyMoney Plugin API

appinterface.cpp
1/*
2 SPDX-FileCopyrightText: 2018 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
3 SPDX-License-Identifier: GPL-2.0-or-later
4*/
5
6// ----------------------------------------------------------------------------
7// QT Includes
8
9// ----------------------------------------------------------------------------
10// KDE Includes
11
12// ----------------------------------------------------------------------------
13// Project Includes
14
15#include "appinterface.h"
16
17KMyMoneyPlugin::AppInterface::AppInterface(QObject* parent, const char* name)
18 : QObject(parent)
19{
20 setObjectName(name);
21}
22
23KMyMoneyPlugin::AppInterface::~AppInterface()
24{
25}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:13 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.