| 138 | } |
| 139 | |
| 140 | const char* getMajorMinorRevVersion() { |
| 141 | static std::string version = ""; |
| 142 | if (!version.size()) { |
| 143 | std::ostringstream versionStream; |
| 144 | versionStream << BZ_MAJOR_VERSION << "." << BZ_MINOR_VERSION << "." << BZ_REV; |
| 145 | version = versionStream.str(); |
| 146 | } |
| 147 | return version.c_str(); |
| 148 | } |
| 149 | |
| 150 | const char* getAppVersion() { |
| 151 | static std::string appVersion = ""; |
no test coverage detected