Revert "add an Amp to Delivery, remove it from Send, make use of this in various...
[ardour.git] / libs / ardour / ardour / send.h
index df9afad55c9d30edd45b9ab589e68a9410bf2d49..17343bff96d6916bb00acea91b0a495a5779b0a7 100644 (file)
@@ -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;