#include <pthread.h>
#include <atomic>
#include <map>
#include <memory>
#include <vector>
#include <string>
#include <exception>
#include <glibmm/threads.h>
#include "pbd/crossthread.h"
#include "pbd/pcg_rand.h"
#include "pbd/pool.h"
#include "pbd/properties.h"
#include "pbd/ringbuffer.h"
#include "pbd/stateful.h"
#include "midi++/types.h"
#include "temporal/beats.h"
#include "temporal/bbt_time.h"
#include "temporal/tempo.h"
#include "evoral/PatchChange.h"
#include "evoral/SMF.h"
#include "ardour/event_ring_buffer.h"
#include "ardour/midi_model.h"
#include "ardour/midi_state_tracker.h"
#include "ardour/processor.h"
#include "ardour/rt_midibuffer.h"
#include "ardour/segment_descriptor.h"
#include "ardour/types.h"
#include "ardour/types_convert.h"
#include "ardour/libardour_visibility.h"
Go to the source code of this file.
◆ TRIGGERBOX_PROPERTY_DECL
#define TRIGGERBOX_PROPERTY_DECL |
( |
|
name, |
|
|
|
type |
|
) |
| void set_ ## name (type); type name () const; |
◆ TRIGGERBOX_PROPERTY_DECL_CONST_REF
#define TRIGGERBOX_PROPERTY_DECL_CONST_REF |
( |
|
name, |
|
|
|
type |
|
) |
| void set_ ## name (type const &); type name () const |