search for: xapian_version_string

Displaying 1 result from an estimated 1 matches for "xapian_version_string".

2007 May 07
2
Xapian::xapian_version_string(), etc
...re added in 0.9.3, and deprecated in favour of names with "xapian_" removed in 0.9.6, so this code will work for any Xapian version from 0.9.3 onwards: #if XAPIAN_MAJOR_VERSION == 0 && XAPIAN_MINOR_VERSION == 9 && XAPIAN_REVISION < 6 string version_string = Xapian::xapian_version_string(); #else string version_string = Xapian::version_string(); #endif So I don't think there's a reason to keep these around longer than we would otherwise. I think removing these in 1.1.0 would be fine, and we should suggest otherwise in the documentation. Am I missing something? Cheer...