X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Froute.h;h=b0a9ce12c93e9114f5b8e3f6ceb59554771913bc;hb=d75b1f5dadbdd7798a66692ac85f9a6393c58582;hp=6df69345175cd4e47022cbfd4c208735b313a8c1;hpb=41efdd54a4e5980a24183b2d26a0f4fc683760c3;p=ardour.git diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h index 6df6934517..b0a9ce12c9 100644 --- a/libs/ardour/ardour/route.h +++ b/libs/ardour/ardour/route.h @@ -562,6 +562,17 @@ class Route : public SessionObject, public Automatable, public RouteGroupMember, /* no copy construction */ Route (Route const &); + + void maybe_note_meter_position (); + + /** true if we've made a note of a custom meter position in these variables */ + bool _custom_meter_position_noted; + /** the processor that came after the meter when it was last set to a custom position, + or 0. + */ + boost::weak_ptr _processor_after_last_custom_meter; + /** true if the last custom meter position was at the end of the processor list */ + bool _last_custom_meter_was_at_end; }; } // namespace ARDOUR