| 1094 | } |
| 1095 | |
| 1096 | rdcstr GetFriendlyName(const rdcstr &URL) override |
| 1097 | { |
| 1098 | rdcstr ret; |
| 1099 | |
| 1100 | { |
| 1101 | SCOPED_LOCK(lock); |
| 1102 | auto it = devices.find(GetDeviceID(URL)); |
| 1103 | if(it != devices.end()) |
| 1104 | ret = it->second.name; |
| 1105 | } |
| 1106 | |
| 1107 | return ret; |
| 1108 | } |
| 1109 | |
| 1110 | bool SupportsMultiplePrograms(const rdcstr &URL) override { return false; } |
| 1111 | bool IsSupported(const rdcstr &URL) override |
no test coverage detected