feat: add missing KF6 framework recipes

This commit is contained in:
2026-05-07 07:53:26 +01:00
parent d8d498f831
commit a69f479b52
2374 changed files with 2610246 additions and 0 deletions
@@ -0,0 +1,37 @@
/*
This file is part of the KDE project
SPDX-FileCopyrightText: 1999 Simon Hausmann <hausmann@kde.org>
SPDX-FileCopyrightText: 1999-2005 David Faure <faure@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef _KPARTS_PARTBASE_P_H
#define _KPARTS_PARTBASE_P_H
#include "partbase.h"
namespace KParts
{
class PartBasePrivate
{
public:
Q_DECLARE_PUBLIC(PartBase)
PartBasePrivate(PartBase *qq)
: q_ptr(qq)
, m_obj(nullptr)
{
}
virtual ~PartBasePrivate()
{
}
PartBase *q_ptr;
QObject *m_obj;
};
} // namespace
#endif