📄 vxl_version.h
字号:
#ifndef vxl_version_h_
#define vxl_version_h_
//:
// \file
// \brief The VXL version.
// This version number applies to the whole vxl tree, not just the
// core libraries.
//: Major version number.
// This will only increase after major changes, or an large accumulation of
// significant smaller ones.
#define VXL_VERSION_MAJOR 1
//: Minor version number.
// This increments between versions. There is no
// "even = release, odd = developement" pattern, or anything like that.
#define VXL_VERSION_MINOR 9
//: Patch number.
// This is only likely to be non-zero if an serious bug is found soon after the
// release of x.y.0. The VXL-maintainers do not usually distinguish between bug fixes
// and feature improvements, so the fix for most known bugs will first be released
// in x.(y+1).0
#define VXL_VERSION_PATCH 0
//: Version date. This is updated every day.
// Formats are year=CCYY, month=MM, day=DD
#define VXL_VERSION_DATE_YEAR 2007
#define VXL_VERSION_DATE_MONTH 11
#define VXL_VERSION_DATE_DAY 09
//: ITK Modification: Defined to indicate this vxl is in ITK.
#define VXL_VERSION_ITK
//: This can either be "RELEASE" or "CVS"
#define VXL_SOURCE "CVS"
//: Helper macros to create strings with the preprocessor.
#define VXL_VERSION_TO_STRING(s) VXL_VERSION_TO_STRING0(s)
#define VXL_VERSION_TO_STRING0(s) #s
//: Version number as a string literal.
// This is in the format "major.minor.patch".
#define VXL_VERSION_STRING \
VXL_VERSION_TO_STRING(VXL_VERSION_MAJOR.VXL_VERSION_MINOR.VXL_VERSION_PATCH)
//: Version date as a string literal.
// This is in the format "CCYY-MM-DD".
#define VXL_VERSION_DATE \
VXL_VERSION_TO_STRING(VXL_VERSION_DATE_YEAR-VXL_VERSION_DATE_MONTH-VXL_VERSION_DATE_DAY)
//: Version date accessible from preprocessor.
// This is an integer in the format CCYYMMDD.
#define VXL_VERSION_DATE_FULL \
VXL_VERSION_DATE_FULL0(VXL_VERSION_DATE_YEAR, \
VXL_VERSION_DATE_MONTH, \
VXL_VERSION_DATE_DAY)
#define VXL_VERSION_DATE_FULL0(y,m,d) VXL_VERSION_DATE_FULL1(y,m,d)
#define VXL_VERSION_DATE_FULL1(y,m,d) y##m##d
#endif // vxl_version_h_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -