From: Paul Davis Date: Mon, 16 May 2016 20:44:14 +0000 (-0400) Subject: add two more AutomationControl fetch methods to Stripable X-Git-Tag: 5.0-pre0~137 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=1a8769ab0353b98ad106382be5fc34779ae8812a;p=ardour.git add two more AutomationControl fetch methods to Stripable --- diff --git a/libs/ardour/ardour/stripable.h b/libs/ardour/ardour/stripable.h index 274a0109dc..ddf83366c7 100644 --- a/libs/ardour/ardour/stripable.h +++ b/libs/ardour/ardour/stripable.h @@ -95,6 +95,8 @@ class LIBARDOUR_API Stripable : public SessionObject { virtual boost::shared_ptr gain_control() const = 0; virtual boost::shared_ptr solo_control() const = 0; + virtual boost::shared_ptr solo_isolate_control() const = 0; + virtual boost::shared_ptr solo_safe_control() const = 0; virtual boost::shared_ptr mute_control() const = 0; virtual boost::shared_ptr phase_control() const = 0;