MCPcopy Create free account
hub / github.com/CppMicroServices/CppMicroServices / ToString

Method ToString

framework/src/bundle/BundleVersion.cpp:212–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 4

FilterBundlesMethod · 0.45
BundleVersion.cppFile · 0.45
BundlePrivateMethod · 0.45

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected