| 181 | } |
| 182 | |
| 183 | void Processor::onTransient(function<void()> callback) { |
| 184 | auto detector = getTransientDetector(); |
| 185 | detector->onTransient.add(callback); |
| 186 | } |
| 187 | |
| 188 | void Processor::onTransientWithStrength(function<void(float)> callback) { |
| 189 | auto detector = getTransientDetector(); |
no test coverage detected