mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-19 11:55:58 +01:00
Add BasicUI::master_out() and BasicUI::monitor_out()
Towards removing the direct use of Session by surfaces.
This commit is contained in:
parent
b35f9ca1a0
commit
0dc7cbba14
21 changed files with 72 additions and 55 deletions
|
|
@ -38,6 +38,7 @@
|
|||
|
||||
namespace ARDOUR {
|
||||
|
||||
class Route;
|
||||
class Session;
|
||||
class SessionConfiguration;
|
||||
|
||||
|
|
@ -172,6 +173,11 @@ class LIBCONTROLCP_API BasicUI {
|
|||
const SessionConfiguration& config () const;
|
||||
SessionConfiguration& config ();
|
||||
|
||||
/* Monitor/Master Out */
|
||||
|
||||
boost::shared_ptr<Stripable> monitor_out () const;
|
||||
boost::shared_ptr<Stripable> master_out () const;
|
||||
|
||||
protected:
|
||||
Session* _session;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue