1 | /* ============================================================ |
---|
2 | * |
---|
3 | * This file is a part of kipi-plugins project |
---|
4 | * http://www.kipi-plugins.org |
---|
5 | * |
---|
6 | * Date : 2006-14-09 |
---|
7 | * Description : Kipi-Plugins shared library. |
---|
8 | * |
---|
9 | * Copyright (C) 2006-2009 Angelo Naselli <anaselli at linux dot it> |
---|
10 | * |
---|
11 | * This program is free software; you can redistribute it |
---|
12 | * and/or modify it under the terms of the GNU General |
---|
13 | * Public License as published by the Free Software Foundation; |
---|
14 | * either version 2, or (at your option) any later version. |
---|
15 | * |
---|
16 | * This program is distributed in the hope that it will be useful, |
---|
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
19 | * GNU General Public License for more details. |
---|
20 | * |
---|
21 | * ============================================================ */ |
---|
22 | |
---|
23 | #ifndef KPABOUTDATA_H |
---|
24 | #define KPABOUTDATA_H |
---|
25 | |
---|
26 | // KDE includes |
---|
27 | |
---|
28 | #include <kaboutdata.h> |
---|
29 | |
---|
30 | // LibKIPI includes |
---|
31 | |
---|
32 | #include "kipiplugins_export.h" |
---|
33 | |
---|
34 | namespace KIPIPlugins |
---|
35 | { |
---|
36 | |
---|
37 | class KIPIPLUGINS_EXPORT KPAboutData : public KAboutData |
---|
38 | { |
---|
39 | |
---|
40 | public: |
---|
41 | |
---|
42 | explicit KPAboutData(const KLocalizedString& pluginName, |
---|
43 | const QByteArray& pluginVersion = QByteArray(), |
---|
44 | enum LicenseKey licenseType = License_Unknown, |
---|
45 | const KLocalizedString& pluginDescription = KLocalizedString(), |
---|
46 | const KLocalizedString& copyrightStatement = ki18n("Copyright 2003-2009, kipi-plugins team")); |
---|
47 | }; |
---|
48 | |
---|
49 | } // namespace KIPIPlugins |
---|
50 | |
---|
51 | #endif //KPABOUTDATA_H |
---|