summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/route.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-05-10 20:06:15 +0200
committerRobin Gareus <robin@gareus.org>2016-05-10 20:54:11 +0200
commitd53d9b01abd5f2000554846c44c791b82f30dc00 (patch)
tree66fd550376082b97b4c4649c5af58c0423ead0c2 /libs/ardour/ardour/route.h
parent4343191c455c4d1b4db603b39496ee2acbc6552f (diff)
prepare route pin display (shared mixer + editor-mixer window proxy)
Diffstat (limited to 'libs/ardour/ardour/route.h')
-rw-r--r--libs/ardour/ardour/route.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index e1e155b744..3c06018e1b 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -52,6 +52,8 @@
#include "ardour/automatable.h"
#include "ardour/unknown_processor.h"
+class RoutePinWindowProxy;
+
namespace ARDOUR {
class Amp;
@@ -234,6 +236,9 @@ public:
std::list<std::string> unknown_processors () const;
+ RoutePinWindowProxy * pinmgr_proxy () const { return _pinmgr_proxy; }
+ void set_pingmgr_proxy (RoutePinWindowProxy* wp) { _pinmgr_proxy = wp ; }
+
/* special processors */
boost::shared_ptr<InternalSend> monitor_send() const { return _monitor_send; }
@@ -911,6 +916,7 @@ private:
or 0.
*/
boost::weak_ptr<Processor> _processor_after_last_custom_meter;
+ RoutePinWindowProxy *_pinmgr_proxy;
void reset_instrument_info ();