Home | History | Annotate | Download | only in internal

Lines Matching refs:Version

5  *  Distributed under the Boost Software License, Version 1.0. (See accompanying
14 Version::Version
27 std::ostream& operator << ( std::ostream& os, Version const& version ) {
28 os << version.majorVersion << '.'
29 << version.minorVersion << '.'
30 << version.patchNumber;
32 if (version.branchName[0]) {
33 os << '-' << version.branchName
34 << '.' << version.buildNumber;
39 Version const& libraryVersion() {
40 static Version version( 2, 7, 0, "", 0 );
41 return version;