mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
temporal: add the entire _points list to output of TempoMap::dump()
This commit is contained in:
parent
f0cd3b5c0c
commit
b67965f499
1 changed files with 4 additions and 0 deletions
|
|
@ -1624,6 +1624,10 @@ TempoMap::dump (std::ostream& ostr) const
|
|||
for (MusicTimes::const_iterator m = _bartimes.begin(); m != _bartimes.end(); ++m) {
|
||||
ostr << &*m << ' ' << *m << endl;
|
||||
}
|
||||
ostr << "... all points ...\n";
|
||||
for (Points::const_iterator p = _points.begin(); p != _points.end(); ++p) {
|
||||
ostr << &*p << ' ' << *p << endl;
|
||||
}
|
||||
ostr << "------------\n\n\n";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue