ZNC  trunk
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
version.h
Go to the documentation of this file.
1 #ifndef _VERSION_H
2 #define _VERSION_H
3 
4 // The following defines are for #if comparison (preprocessor only likes ints)
5 #define VERSION_MAJOR 1
6 #define VERSION_MINOR 5
7 // This one is for display purpose
8 #define VERSION (VERSION_MAJOR + VERSION_MINOR / 10.0)
9 
10 // You can add -DVERSION_EXTRA="stuff" to your CXXFLAGS!
11 extern const char* ZNC_VERSION_EXTRA;
12 
13 #endif
const char * ZNC_VERSION_EXTRA