summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/common/include/kpaboutdata.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/common/include/kpaboutdata.h')
-rw-r--r--kipi-plugins/common/include/kpaboutdata.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/kipi-plugins/common/include/kpaboutdata.h b/kipi-plugins/common/include/kpaboutdata.h
new file mode 100644
index 0000000..89f986f
--- /dev/null
+++ b/kipi-plugins/common/include/kpaboutdata.h
@@ -0,0 +1,51 @@
+//////////////////////////////////////////////////////////////////////////////
+//
+// KPABOUTDATA.H
+//
+// Copyright (C) 2006 Angelo Naselli <anaselli at linux dot it>
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA.
+//
+//////////////////////////////////////////////////////////////////////////////
+
+#ifndef __KIPI_ABOUT_DATA__
+#define __KIPI_ABOUT_DATA__
+
+#include <kaboutdata.h>
+
+#include <libkipi/libkipi_export.h>
+
+namespace KIPIPlugins
+{
+
+ class LIBKIPI_EXPORT KPAboutData : public KAboutData
+ {
+ private:
+ QString KipiPluginsVersionString;
+
+ public:
+
+ KPAboutData(const char *pluginName,
+ const char *pluginVersion=0,
+ int licenseType=License_Unknown,
+ const char *pluginDescription=0,
+ const char *copyrightStatement="Copyright 2003-2007, kipi-plugins team");
+
+ };
+
+} // namespace KIPIPlugins
+
+#endif //__KIPI_ABOUT_DATA__
+