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

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 #ifndef KPARTS_EVENT_P_H
0010 #define KPARTS_EVENT_P_H
0011 
0012 namespace KParts
0013 {
0014 class EventPrivate
0015 {
0016 public:
0017     explicit EventPrivate(const char *eventName)
0018         : m_eventName(eventName)
0019     {
0020     }
0021 
0022     virtual ~EventPrivate() = default;
0023 
0024     const char *m_eventName;
0025 };
0026 
0027 }
0028 
0029 #endif