mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
temporal: improve utility of TempoMap::dump() output
This commit is contained in:
parent
b3497b3f8f
commit
1b904285be
1 changed files with 6 additions and 4 deletions
|
|
@ -1668,12 +1668,14 @@ TempoMap::dump (std::ostream& ostr) const
|
||||||
ostr << &*p << ' ' << *p;
|
ostr << &*p << ' ' << *p;
|
||||||
if (dynamic_cast<MusicTimePoint const *> (&(*p))) {
|
if (dynamic_cast<MusicTimePoint const *> (&(*p))) {
|
||||||
ostr << " BarTime";
|
ostr << " BarTime";
|
||||||
} else if (dynamic_cast<TempoPoint const *> (&(*p))) {
|
}
|
||||||
|
|
||||||
|
if (dynamic_cast<TempoPoint const *> (&(*p))) {
|
||||||
ostr << " Tempo";
|
ostr << " Tempo";
|
||||||
} else if (dynamic_cast<MeterPoint const *> (&(*p))) {
|
}
|
||||||
|
|
||||||
|
if (dynamic_cast<MeterPoint const *> (&(*p))) {
|
||||||
ostr << " Meter";
|
ostr << " Meter";
|
||||||
} else {
|
|
||||||
ostr << " ???";
|
|
||||||
}
|
}
|
||||||
ostr << endl;
|
ostr << endl;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue