summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/send.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-09-15 16:34:53 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-09-15 16:35:37 -0400
commit601a34521c2ce1d0167ed2f3c66f2fa6eeeb6b8e (patch)
tree43afbe2f75c190654c8c57d37e99653ab101c000 /libs/ardour/ardour/send.h
parentfdcc209354d830d8edce0e53a367fd2d6faef75d (diff)
add an Amp to Delivery, remove it from Send, make use of this in various ::run() methods
Delivery::_amp now will handle monitor-related delicks assuming the Session::config.get_use_monitor_fades() is true.
Diffstat (limited to 'libs/ardour/ardour/send.h')
-rw-r--r--libs/ardour/ardour/send.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/ardour/ardour/send.h b/libs/ardour/ardour/send.h
index 17343bff96..df9afad55c 100644
--- a/libs/ardour/ardour/send.h
+++ b/libs/ardour/ardour/send.h
@@ -43,7 +43,6 @@ class LIBARDOUR_API Send : public Delivery
bool display_to_user() const;
- boost::shared_ptr<Amp> amp() const { return _amp; }
boost::shared_ptr<PeakMeter> meter() const { return _meter; }
bool metering() const { return _metering; }
@@ -78,7 +77,6 @@ class LIBARDOUR_API Send : public Delivery
protected:
bool _metering;
- boost::shared_ptr<Amp> _amp;
boost::shared_ptr<PeakMeter> _meter;
boost::shared_ptr<DelayLine> _delayline;