source: extensions/digikam_export/common/libkipiplugins/kpaboutdata.h @ 24492

Last change on this file since 24492 was 4770, checked in by fcoiffie, 14 years ago

Premiere version du plugin Digikam piwigoexport

  • Connexion
  • Liste des categories
  • Upload des photos
File size: 1.6 KB
Line 
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
34namespace KIPIPlugins
35{
36
37class 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
Note: See TracBrowser for help on using the repository browser.