File indexing completed on 2025-01-19 04:46:39
0001 /* 0002 SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "googleshorturlengineplugin.h" 0008 #include "googleshorturlengineinterface.h" 0009 #include <KPluginFactory> 0010 0011 K_PLUGIN_FACTORY_WITH_JSON(GoogleShortUrlEnginePluginFactory, "pimcommon_googleshorturlengineplugin.json", registerPlugin<GoogleShortUrlEnginePlugin>();) 0012 0013 GoogleShortUrlEnginePlugin::GoogleShortUrlEnginePlugin(QObject *parent, const QList<QVariant> &) 0014 : ShortUrlEnginePlugin(parent) 0015 { 0016 } 0017 0018 GoogleShortUrlEnginePlugin::~GoogleShortUrlEnginePlugin() 0019 { 0020 } 0021 0022 ShortUrlEngineInterface *GoogleShortUrlEnginePlugin::createInterface(QObject *parent) 0023 { 0024 return new GoogleShortUrlEngineInterface(parent); 0025 } 0026 0027 #include "googleshorturlengineplugin.moc" 0028 0029 #include "moc_googleshorturlengineplugin.cpp"