mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 22:27:36 +01:00
tweak TriggerBox API
This commit is contained in:
parent
e9401a945f
commit
b8e38ed777
2 changed files with 3 additions and 3 deletions
|
|
@ -67,7 +67,7 @@ class LIBARDOUR_API AudioTrigger : public Trigger {
|
|||
class LIBARDOUR_API TriggerBox : public Processor
|
||||
{
|
||||
public:
|
||||
TriggerBox (Session&, std::string const & name);
|
||||
TriggerBox (Session&);
|
||||
~TriggerBox ();
|
||||
|
||||
void run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_sample, double speed, pframes_t nframes, bool result_required);
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@ using std::string;
|
|||
using std::cerr;
|
||||
using std::endl;
|
||||
|
||||
TriggerBox::TriggerBox (Session& s, std::string const & name)
|
||||
: Processor (s, name, Temporal::BeatTime)
|
||||
TriggerBox::TriggerBox (Session& s)
|
||||
: Processor (s, _("TriggerBox"), Temporal::BeatTime)
|
||||
, _trigger_queue (1024)
|
||||
{
|
||||
PropertyList plist;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue