Пример #1
0
 std::string hexToUuid(const std::string &hex, UUIDEncoding encoding)
 {
     switch(encoding) {
     case DefaultEncoding: return hexToUuid(hex);
     case JavaLegacy:      return hexToJavaUuid(hex);
     case CSharpLegacy:    return hexToCSharpUuid(hex);
     case PythonLegacy:    return hexToPythonUuid(hex);
     default:              return hexToUuid(hex);
     }
 }
Пример #2
0
 std::string hexToPythonUuid(const std::string &hex)
 {
     return hexToUuid(hex);
 }
Пример #3
0
std::string Robomongo::HexUtils::hexToPythonUuid(const std::string &hex)
{
    return hexToUuid(hex);
}