diff --git a/tools/bb/bb.h b/tools/bb/bb.h index 68c1fbe709..e16b9360a8 100644 --- a/tools/bb/bb.h +++ b/tools/bb/bb.h @@ -35,6 +35,10 @@ class BeatBox { void set_quantize (int divisor); + float tempo() const { return _tempo; } + int meter_beats() const { return _meter_beats; } + int meter_beat_type() const { return _meter_beat_type; } + private: bool _start_requested; bool _running;