File indexing completed on 2024-05-19 05:14:36

0001 /*
0002   This file is part of KAddressBook.
0003 
0004   SPDX-FileCopyrightText: 2009-2024 Laurent Montel <montel@kde.org>
0005 
0006   SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #pragma once
0010 
0011 #include "kaddressbook_export.h"
0012 
0013 #include <KAboutData>
0014 
0015 class KADDRESSBOOK_EXPORT AboutData : public KAboutData
0016 {
0017 public:
0018     /**
0019      * Creates a new about data object.
0020      */
0021     AboutData();
0022 
0023     /**
0024      * Destroys the about data object.
0025      */
0026     ~AboutData();
0027 };