File indexing completed on 2024-04-28 04:36:30

0001 /*
0002     SPDX-FileCopyrightText: 2004 Alexander Dymo <adymo@kdevelop.org>
0003     SPDX-FileCopyrightText: 2006 Matt Rogers <mattr@kde.org
0004     SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
0005 
0006     Based on code from Kopete
0007     SPDX-FileCopyrightText: 2002-2003 Martijn Klingens <klingens@kde.org>
0008 
0009     SPDX-License-Identifier: LGPL-2.0-or-later
0010 */
0011 
0012 #include "iplugincontroller.h"
0013 
0014 #include "ipluginversion.h"
0015 
0016 namespace KDevelop
0017 {
0018 
0019 IPluginController::IPluginController( QObject* parent )
0020 : QObject( parent )
0021 {
0022 }
0023 
0024 
0025 IPluginController::~IPluginController()
0026 {
0027 }
0028 
0029 }
0030 
0031 #include "moc_iplugincontroller.cpp"