| 96 | } |
| 97 | |
| 98 | void Processor::onBeat(function<void()> callback) { |
| 99 | auto detector = getBeatDetector(); |
| 100 | detector->onBeat.add(callback); |
| 101 | } |
| 102 | |
| 103 | void Processor::onBeatPhase(function<void(float)> callback) { |
| 104 | auto detector = getBeatDetector(); |
no test coverage detected