Small cleanup: add constructor to InterThreadInfo.
[ardour.git] / libs / ardour / ardour / return.h
index 1a33795a37aae402bf865c32e4a85094bd3c4b36..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; }
@@ -54,7 +52,7 @@ public:
 
        XMLNode& state(bool full);
        XMLNode& get_state(void);
-       int      set_state(const XMLNode& node);
+       int      set_state(const XMLNode&, int version);
 
        uint32_t pans_required() const { return _configured_input.n_audio(); }