Respond to MMC even when synced to JACK. Fixes #3700.
[ardour.git] / libs / ardour / ardour / send.h
index af806b3c1f147e6368c0df3bee0408d31369724e..bf5c5d73707cb7b229a0b69e04698204af38be48 100644 (file)
@@ -49,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, framepos_t start_frame, framepos_t end_frame, nframes_t nframes, bool);
+       void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
 
        bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
        bool configure_io (ChanCount in, ChanCount out);
@@ -77,6 +77,8 @@ class Send : public Delivery
        /* disallow copy construction */
        Send (const Send&);
 
+       int set_state_2X (XMLNode const &, int);
+
        uint32_t  _bitslot;
 };