JUCE
|
Classes | |
class | dsp::ProcessorChain< Processors > |
This variadically-templated class lets you join together any number of processor classes into a single processor which will call process() on them all in sequence. More... | |
Namespaces | |
namespace | dsp |
Functions | |
template<int Index, typename... Processors> | |
auto & | dsp::get (ProcessorChain< Processors... > &chain) noexcept |
Non-member equivalent of ProcessorChain::get which avoids awkward member template syntax. | |
template<int Index, typename... Processors> | |
auto & | dsp::get (const ProcessorChain< Processors... > &chain) noexcept |
Non-member equivalent of ProcessorChain::get which avoids awkward member template syntax. | |
template<int Index, typename... Processors> | |
void | dsp::setBypassed (ProcessorChain< Processors... > &chain, bool bypassed) noexcept |
Non-member equivalent of ProcessorChain::setBypassed which avoids awkward member template syntax. | |
template<int Index, typename... Processors> | |
bool | dsp::isBypassed (const ProcessorChain< Processors... > &chain) noexcept |
Non-member equivalent of ProcessorChain::isBypassed which avoids awkward member template syntax. | |