temporal: add the entire _points list to output of TempoMap::dump()
This commit is contained in:
parent
f0cd3b5c0c
commit
b67965f499
@ -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…
Reference in New Issue
Block a user