control protocol: allow protocol implementations to override rid selection API

This commit is contained in:
Paul Davis 2022-06-05 15:36:41 -06:00
parent 2e027e5894
commit eb4ac77a7b

View File

@ -89,10 +89,10 @@ public:
void remove_stripable_from_selection (boost::shared_ptr<ARDOUR::Stripable>);
void clear_stripable_selection ();
void add_rid_to_selection (int rid);
void set_rid_selection (int rid);
void toggle_rid_selection (int rid);
void remove_rid_from_selection (int rid);
virtual void add_rid_to_selection (int rid);
virtual void set_rid_selection (int rid);
virtual void toggle_rid_selection (int rid);
virtual void remove_rid_from_selection (int rid);
boost::shared_ptr<ARDOUR::Stripable> first_selected_stripable () const;