File indexing completed on 2024-05-12 07:51:58

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 1999 Simon Hausmann <hausmann@kde.org>
0004     SPDX-FileCopyrightText: 1999-2005 David Faure <faure@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef _KPARTS_PARTBASE_P_H
0010 #define _KPARTS_PARTBASE_P_H
0011 
0012 #include "partbase.h"
0013 
0014 namespace KParts
0015 {
0016 class PartBasePrivate
0017 {
0018 public:
0019     Q_DECLARE_PUBLIC(PartBase)
0020 
0021     PartBasePrivate(PartBase *qq)
0022         : q_ptr(qq)
0023         , m_obj(nullptr)
0024     {
0025     }
0026 
0027     virtual ~PartBasePrivate()
0028     {
0029     }
0030 
0031     PartBase *q_ptr;
0032     QObject *m_obj;
0033 };
0034 
0035 } // namespace
0036 
0037 #endif