| 392 | } |
| 393 | |
| 394 | int uri_to_devid(const std::string uri) { |
| 395 | int id; |
| 396 | std::istringstream is(uri); |
| 397 | is.seekg((uriScheme + "://").length()); |
| 398 | is >> id; |
| 399 | return id; |
| 400 | } |
| 401 | |
| 402 | void register_uri(std::string uri) { |
| 403 | OniDeviceInfo info; |
nothing calls this directly
no outgoing calls
no test coverage detected