Save/restore aux send levels. Fixes #3546.
[ardour.git] / libs / ardour / ardour / send.h
index b86d321bd21c0be55a562ecd095b78deb90bca75..e66c72367a33a56d93f3958308cc7e5d7e41d194 100644 (file)
@@ -20,7 +20,6 @@
 #ifndef __ardour_send_h__
 #define __ardour_send_h__
 
-#include <sigc++/signal.h>
 #include <string>
 
 #include "pbd/stateful.h"
@@ -38,7 +37,6 @@ class Send : public Delivery
 {
   public:
        Send (Session&, boost::shared_ptr<MuteMaster>, Delivery::Role r = Delivery::Send);
-       Send (Session&, boost::shared_ptr<MuteMaster>, const XMLNode&, int version = 3000, Delivery::Role r = Delivery::Send);
        virtual ~Send ();
 
        uint32_t bit_slot() const { return _bitslot; }
@@ -51,13 +49,13 @@ class Send : public Delivery
        bool metering() const { return _metering; }
        void set_metering (bool yn) { _metering = yn; }
 
-       XMLNode& state(bool full);
-       XMLNode& get_state(void);
+       XMLNode& state (bool full);
+       XMLNode& get_state ();
        int set_state(const XMLNode&, int version);
 
        uint32_t pans_required() const { return _configured_input.n_audio(); }
 
-       void run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes);
+       void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, nframes_t nframes, bool);
 
        bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
        bool configure_io (ChanCount in, ChanCount out);
@@ -79,6 +77,8 @@ class Send : public Delivery
        /* disallow copy construction */
        Send (const Send&);
 
+       int set_state_2X (XMLNode const &, int);
+
        uint32_t  _bitslot;
 };