Small cleanup: add constructor to InterThreadInfo.
[ardour.git] / libs / ardour / ardour / return.h
index b3212fe4a05c56f397ccc70a852593a1d767ac5c..63915e5d7865d8bf3a854455678219ba74d6193a 100644 (file)
@@ -21,7 +21,6 @@
 #ifndef __ardour_return_h__
 #define __ardour_return_h__
 
-#include <sigc++/signal.h>
 #include <string>
 
 
@@ -39,12 +38,11 @@ class Return : public IOProcessor
 {
 public:
        Return (Session&, bool internal = false);
-       Return (Session&, const XMLNode&, bool internal = false);
        virtual ~Return ();
 
        uint32_t bit_slot() const { return _bitslot; }
 
-       void run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes);
+       void run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes, bool);
 
        boost::shared_ptr<Amp> amp() const { return _amp; }
        boost::shared_ptr<PeakMeter> meter() const { return _meter; }