2 Kopete (c) 2002-2005 by the Kopete developers <kopete-devel@kde.org>
4 *************************************************************************
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
11 *************************************************************************
14 #ifndef _KOPETE_VERSION_H_
15 #define _KOPETE_VERSION_H_
17 #define KOPETE_VERSION_STRING "0.70.50"
18 #define KOPETE_VERSION_MAJOR 0
19 #define KOPETE_VERSION_MINOR 70
20 #define KOPETE_VERSION_RELEASE 50
21 #define KOPETE_MAKE_VERSION( a,b,c ) (((a) << 16) | ((b) << 8) | (c))
23 #define KOPETE_VERSION \
24 KOPETE_MAKE_VERSION(KOPETE_VERSION_MAJOR,KOPETE_VERSION_MINOR,KOPETE_VERSION_RELEASE)
26 #define KOPETE_IS_VERSION(a,b,c) ( KOPETE_VERSION >= KOPETE_MAKE_VERSION(a,b,c) )
29 #endif // _KOPETE_VERSION_H_