summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-04 12:44:42 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-04 12:45:53 -0400
commit57ee61772b6c44e7731619c5c74e45bb860ac4aa (patch)
treebd517f71f0709195b0ad4b8f3179a661cc060a12 /libs/ardour/ardour/session.h
parent5c32fc3babdd3ed7d715b6aeb24a72f3a0f550a0 (diff)
add session-scope selection ops for Stripables
Diffstat (limited to 'libs/ardour/ardour/session.h')
-rw-r--r--libs/ardour/ardour/session.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index 6c3d869013..61c575e0b2 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -302,6 +302,10 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
};
void notify_presentation_info_change ();
+ void clear_stripable_selection ();
+ void toggle_stripable_selection (boost::shared_ptr<Stripable>);
+ void add_stripable_selection (boost::shared_ptr<Stripable>);
+ void set_stripable_selection (boost::shared_ptr<Stripable>);
template<class T> void foreach_route (T *obj, void (T::*func)(Route&), bool sort = true);
template<class T> void foreach_route (T *obj, void (T::*func)(boost::shared_ptr<Route>), bool sort = true);