File indexing completed on 2024-04-21 16:31:43

0001 /**
0002  * SPDX-FileCopyrightText: (C) 2003 by Sébastien Laoût <slaout@linux62.org>
0003  * SPDX-License-Identifier: GPL-2.0-or-later
0004  */
0005 
0006 #ifndef ABOUTDATA_H
0007 #define ABOUTDATA_H
0008 
0009 #include "basket_export.h"
0010 #include <KAboutData>
0011 
0012 /**
0013  * @class AboutData
0014  * @brief Store all the information about the application
0015  * @author Sébastien Laoût <slaout@linux62.org>
0016  */
0017 class BASKET_EXPORT AboutData : public KAboutData
0018 {
0019 public:
0020     static QString componentName();
0021     static QString displayName();
0022 
0023     AboutData();
0024 };
0025 
0026 #endif