Go to the documentation of this file. 1 #ifndef TESSERACT_CCUTIL_VERSION_H_ 2 #define TESSERACT_CCUTIL_VERSION_H_ 4 #define TESSERACT_VERSION_STR "4.00.00alpha" 5 #define TESSERACT_VERSION 0x040000 6 #define MAKE_VERSION(major, minor, patch) \ 7 (((major) << 16) | ((minor) << 8) | (patch)) 9 #endif // TESSERACT_CCUTIL_VERSION_H_