| 23 | { |
| 24 | |
| 25 | cripts::string |
| 26 | UUID::Unique::_get(cripts::Context *context) |
| 27 | { |
| 28 | cripts::string ret; |
| 29 | char uuid[TS_CRUUID_STRING_LEN + 1]; |
| 30 | |
| 31 | if (TS_SUCCESS == TSClientRequestUuidGet(context->state.txnp, uuid)) { |
| 32 | ret = uuid; |
| 33 | } |
| 34 | return ret; // RVO |
| 35 | } |
| 36 | |
| 37 | cripts::string |
| 38 | UUID::Request::_get(cripts::Context *context) |
nothing calls this directly
no test coverage detected