| 219 | } |
| 220 | |
| 221 | bool CliRemoteController::listKeys() const |
| 222 | { |
| 223 | QStringList keys; |
| 224 | if(checkConnectionAndLog()) { |
| 225 | auto reply = service->getKeys(); |
| 226 | keys = handleReply(reply).value_or(keys); |
| 227 | } |
| 228 | keys = keys.empty() ? DspConfig::getKeys() : keys; |
| 229 | Log::console(keys.join("\n"), true); |
| 230 | return !keys.empty(); |
| 231 | } |
| 232 | |
| 233 | bool CliRemoteController::listPresets() const |
| 234 | { |
nothing calls this directly
no test coverage detected