blob: 6121efba7a4ca434c8d9f9a7b761c657770c961d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef VERSION_H
#define VERSION_H
#define KMYFIREWALL_VERSION "1.1.1"
#define COPYRIGHT_DATE "(c) 2001-2007"
#define COPYRIGHT_OWNER "The KMyFirewall Team"
#define COPYRIGHT_STRING "copyright (c) the KMyFirewall developers 2001-2007"
#define MAINTAINER "Christian Hubinger <chubinegr@irrsinnig.org>"
#define LICENSE "This program is distributed under the terms of the GPL v2"
#endif
|