File indexing completed on 2024-04-28 15:29:21

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 1999 Simon Hausmann <hausmann@kde.org>
0004     SPDX-FileCopyrightText: 1999 David Faure <faure@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #include "liveconnectextension.h"
0010 
0011 #include "readonlypart.h"
0012 
0013 using namespace KParts;
0014 
0015 class KParts::LiveConnectExtensionPrivate
0016 {
0017 };
0018 
0019 LiveConnectExtension::LiveConnectExtension(KParts::ReadOnlyPart *parent)
0020     : QObject(parent)
0021     , d(nullptr)
0022 {
0023 }
0024 
0025 LiveConnectExtension::~LiveConnectExtension()
0026 {
0027 }
0028 
0029 bool LiveConnectExtension::get(const unsigned long, const QString &, Type &, unsigned long &, QString &)
0030 {
0031     return false;
0032 }
0033 
0034 bool LiveConnectExtension::put(const unsigned long, const QString &, const QString &)
0035 {
0036     return false;
0037 }
0038 
0039 bool LiveConnectExtension::call(const unsigned long, const QString &, const QStringList &, Type &, unsigned long &, QString &)
0040 {
0041     return false;
0042 }
0043 
0044 void LiveConnectExtension::unregister(const unsigned long)
0045 {
0046 }
0047 
0048 LiveConnectExtension *LiveConnectExtension::childObject(QObject *obj)
0049 {
0050     return obj->findChild<KParts::LiveConnectExtension *>(QString(), Qt::FindDirectChildrenOnly);
0051 }
0052 
0053 #include "moc_liveconnectextension.cpp"