| 210 | } |
| 211 | |
| 212 | std::string |
| 213 | BundleVersion::ToString() const |
| 214 | { |
| 215 | if (undefined) |
| 216 | return "undefined"; |
| 217 | |
| 218 | std::stringstream ss; |
| 219 | ss << majorVersion << SEPARATOR << minorVersion << SEPARATOR << microVersion; |
| 220 | if (!qualifier.empty()) |
| 221 | { |
| 222 | ss << SEPARATOR << qualifier; |
| 223 | } |
| 224 | return ss.str(); |
| 225 | } |
| 226 | |
| 227 | bool |
| 228 | BundleVersion::operator==(BundleVersion const& other) const |
no test coverage detected