summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/send.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-09-16 18:32:28 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-09-16 18:38:44 -0400
commit96cc1dbe80f0378ca010c1c5ac37913958193360 (patch)
treefc89043007be602c33bf8752bc5461dc73d23349 /libs/ardour/ardour/send.h
parent202b9cc82a6d602ec842b60d609ebdcfe6bac16d (diff)
Revert "add an Amp to Delivery, remove it from Send, make use of this in various ::run() methods"
This reverts commit 601a34521c2ce1d0167ed2f3c66f2fa6eeeb6b8e.
Diffstat (limited to 'libs/ardour/ardour/send.h')
-rw-r--r--libs/ardour/ardour/send.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/ardour/send.h b/libs/ardour/ardour/send.h
index df9afad55c..17343bff96 100644
--- a/libs/ardour/ardour/send.h
+++ b/libs/ardour/ardour/send.h
@@ -43,6 +43,7 @@ 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; }
@@ -77,6 +78,7 @@ class LIBARDOUR_API Send : public Delivery
protected:
bool _metering;
+ boost::shared_ptr<Amp> _amp;
boost::shared_ptr<PeakMeter> _meter;
boost::shared_ptr<DelayLine> _delayline;