mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
temporal: operator<< for Range and RangeList
This commit is contained in:
parent
47416743fb
commit
5dbbac0bc2
2 changed files with 40 additions and 0 deletions
|
|
@ -117,3 +117,18 @@ template<> OverlapType Temporal::coverage_exclusive_ends<int64_t> (int64_t sa, i
|
|||
/* convert end positions to inclusive */
|
||||
return coverage_inclusive_ends (sa, eaE-1, sb, ebE-1);
|
||||
}
|
||||
|
||||
std::ostream&
|
||||
std::operator<< (std::ostream & o, RangeList const & rl)
|
||||
{
|
||||
rl.dump (o);
|
||||
return o;
|
||||
}
|
||||
|
||||
std::ostream&
|
||||
std::operator<< (std::ostream & o, Range const & r)
|
||||
{
|
||||
r.dump (o);
|
||||
return o;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue