| 33 | } |
| 34 | |
| 35 | UUID toUUID(const std::string& str) { |
| 36 | try { |
| 37 | return UUID::string_generate(str); |
| 38 | } catch (...) { |
| 39 | return {}; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // Finds Version 4 uuid in a string including {} |
| 44 | const boost::regex& uuidInString() { |
no outgoing calls