summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/bbt_time.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/bbt_time.h')
-rw-r--r--libs/ardour/ardour/bbt_time.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/ardour/ardour/bbt_time.h b/libs/ardour/ardour/bbt_time.h
index 76e91d5752..2157e794a2 100644
--- a/libs/ardour/ardour/bbt_time.h
+++ b/libs/ardour/ardour/bbt_time.h
@@ -22,6 +22,7 @@
#include <ostream>
#include <stdint.h>
+#include <iomanip>
namespace ARDOUR {
@@ -59,4 +60,15 @@ operator<< (std::ostream& o, const ARDOUR::BBT_Time& bbt)
return o;
}
+inline std::ostream&
+print_padded (std::ostream& o, const ARDOUR::BBT_Time& bbt)
+{
+ o << std::setfill ('0') << std::right
+ << std::setw (3) << bbt.bars << "|"
+ << std::setw (2) << bbt.beats << "|"
+ << std::setw (4) << bbt.ticks;
+
+ return o;
+}
+
#endif /* __ardour_bbt_time_h__ */