| 116 | } |
| 117 | |
| 118 | void Processor::onTempo(function<void(float)> callback) { |
| 119 | auto detector = getTempoAnalyzer(); |
| 120 | detector->onTempo.add(callback); |
| 121 | } |
| 122 | |
| 123 | void Processor::onTempoWithConfidence(function<void(float, float)> callback) { |
| 124 | auto detector = getTempoAnalyzer(); |
no test coverage detected