20 #ifndef _KDE_VERSION_H_
21 #define _KDE_VERSION_H_
23 #include "kdelibs_export.h"
25 #define KDE_VERSION_STRING "3.5.13.3 [DEVELOPMENT]"
26 #define KDE_VERSION_MAJOR 3
27 #define KDE_VERSION_MINOR 5
28 #define KDE_VERSION_RELEASE 13
29 #define KDE_MAKE_VERSION( a,b,c ) (((a) << 16) | ((b) << 8) | (c))
32 KDE_MAKE_VERSION(KDE_VERSION_MAJOR,KDE_VERSION_MINOR,KDE_VERSION_RELEASE)
34 #define KDE_IS_VERSION(a,b,c) ( KDE_VERSION >= KDE_MAKE_VERSION(a,b,c) )
49 KDECORE_EXPORT
unsigned int version();
79 #endif // _KDE_VERSION_H_
const char * versionString()
Returns the KDE version as string, e.g.
unsigned int versionRelease()
Returns the release of KDE's version, e.g.
Namespace for general KDE functions.
unsigned int versionMinor()
Returns the minor number of KDE's version, e.g.
unsigned int versionMajor()
Returns the major number of KDE's version, e.g.
unsigned int version()
Returns the encoded number of KDE's version, see the KDE_VERSION macro.