libkholidays
kholidays_version.h
00001 /* 00002 This file is part of libkholidays. 00003 Copyright (c) 2004 Allen Winter <winter@kde.org> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU General Public License as 00007 published by the Free Software Foundation; either version 2 of the 00008 License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 In addition, as a special exception, the copyright holders give 00020 permission to link the code of this program with any edition of 00021 the Qt library by Trolltech AS, Norway (or with modified versions 00022 of Qt that use the same license as Qt), and distribute linked 00023 combinations including the two. You must obey the GNU General 00024 Public License in all respects for all of the code used other than 00025 Qt. If you modify this file, you may extend this exception to 00026 your version of the file, but you are not obligated to do so. If 00027 you do not wish to do so, delete this exception statement from 00028 your version. 00029 */ 00030 00031 #ifndef KHOLIDAYS_KHOLIDAYS_VERSION_H 00032 #define KHOLIDAYS_KHOLIDAYS_VERSION_H 00033 00034 #define LIBKHOLIDAYS_VERSION_STRING "1.0.0" 00035 #define LIBKHOLIDAYS_VERSION_MAJOR 1 00036 #define LIBKHOLIDAYS_VERSION_MINOR 0 00037 #define LIBKHOLIDAYS_VERSION_RELEASE 0 00038 00039 #define LIBKHOLIDAYS_VERSION \ 00040 KDE_MAKE_VERSION(LIBKHOLIDAYS_VERSION_MAJOR,\ 00041 LIBKHOLIDAYS_VERSION_MINOR,\ 00042 LIBKHOLIDAYS_VERSION_RELEASE) 00043 00044 #define LIBKHOLIDAYS_IS_VERSION(a,b,c) \ 00045 ( LIBKHOLIDAYS_VERSION >= KDE_MAKE_VERSION(a,b,c) ) 00046 00047 #endif