| 1258 | } |
| 1259 | |
| 1260 | bool Processor::canAddBus(bool isInput) { |
| 1261 | if (!m_isClient) { |
| 1262 | if (auto p = getPlugin(0)) { |
| 1263 | return p->canAddBus(isInput); |
| 1264 | } |
| 1265 | } |
| 1266 | return false; |
| 1267 | } |
| 1268 | |
| 1269 | bool Processor::canRemoveBus(bool isInput) { |
| 1270 | if (!m_isClient) { |
nothing calls this directly
no outgoing calls
no test coverage detected