logic to copy audio region fade in/fade out into compound regions (one-way for now)
[ardour.git] / libs / ardour / ardour / send.h
index 8b39d12727e61cb2efeee40ac848c18444dc58f4..40045d6b855d4d30eed5dc3010f6f55fbbf4ba49 100644 (file)
@@ -36,8 +36,7 @@ class Amp;
 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);
+       Send (Session&, boost::shared_ptr<Pannable> pannable, boost::shared_ptr<MuteMaster>, Delivery::Role r = Delivery::Send);
        virtual ~Send ();
 
        uint32_t bit_slot() const { return _bitslot; }
@@ -50,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, 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);
@@ -78,6 +77,8 @@ class Send : public Delivery
        /* disallow copy construction */
        Send (const Send&);
 
+       int set_state_2X (XMLNode const &, int);
+
        uint32_t  _bitslot;
 };