mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-28 09:27:39 +01:00
Add BasicUI::locations()
Towards removing the direct use of Session by surfaces.
This commit is contained in:
parent
fdc24b6594
commit
3e101dd895
11 changed files with 34 additions and 16 deletions
|
|
@ -852,3 +852,15 @@ BasicUI::master_out () const
|
|||
{
|
||||
return _session->master_out ();
|
||||
}
|
||||
|
||||
const Locations*
|
||||
BasicUI::locations () const
|
||||
{
|
||||
return _session->locations ();
|
||||
}
|
||||
|
||||
Locations*
|
||||
BasicUI::locations ()
|
||||
{
|
||||
return _session->locations ();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue