X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=libs%2Fardour%2Fardour%2Fsend.h;h=40045d6b855d4d30eed5dc3010f6f55fbbf4ba49;hb=9925ab554e65ac31a41eff1fa03a9c12aad1973e;hp=37d56e2abd6404d05f04ea0df65cb28de61294a5;hpb=86f24d20e1616ffaafc97de65db49fd6a91270f8;p=ardour.git diff --git a/libs/ardour/ardour/send.h b/libs/ardour/ardour/send.h index 37d56e2abd..40045d6b85 100644 --- a/libs/ardour/ardour/send.h +++ b/libs/ardour/ardour/send.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000 Paul Davis + Copyright (C) 2000 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,10 +20,9 @@ #ifndef __ardour_send_h__ #define __ardour_send_h__ -#include #include -#include "pbd/stateful.h" +#include "pbd/stateful.h" #include "ardour/ardour.h" #include "ardour/audioengine.h" @@ -36,28 +35,33 @@ class Amp; class Send : public Delivery { - public: - Send (Session&, boost::shared_ptr, bool internal = false); - Send (Session&, boost::shared_ptr, const XMLNode&, bool internal = false); + public: + Send (Session&, boost::shared_ptr pannable, boost::shared_ptr, Delivery::Role r = Delivery::Send); virtual ~Send (); uint32_t bit_slot() const { return _bitslot; } + bool display_to_user() const; + boost::shared_ptr amp() const { return _amp; } boost::shared_ptr meter() const { return _meter; } bool metering() const { return _metering; } void set_metering (bool yn) { _metering = yn; } - - XMLNode& state(bool full); - XMLNode& get_state(void); - int set_state(const XMLNode& node); + + 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, pframes_t nframes, bool); bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const; + bool configure_io (ChanCount in, ChanCount out); + + void activate (); + void deactivate (); bool set_name (const std::string& str); @@ -72,7 +76,9 @@ class Send : public Delivery private: /* disallow copy construction */ Send (const Send&); - + + int set_state_2X (XMLNode const &, int); + uint32_t _bitslot; };