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

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 2020 Friedrich W. H. Kossebau <kossebau@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KPARTS_METADATAUTIL_H
0009 #define KPARTS_METADATAUTIL_H
0010 
0011 #include <kparts/kparts_export.h>
0012 
0013 #if KPARTS_BUILD_DEPRECATED_SINCE(5, 77)
0014 
0015 class KPluginMetaData;
0016 class KAboutData;
0017 
0018 namespace PartMetaDataUtil
0019 {
0020 KPluginMetaData fromKAboutData(const KAboutData &aboutData);
0021 
0022 }
0023 
0024 #endif
0025 
0026 #endif