Audacity 3.2.0
EffectPreview.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 EffectPreview.h
6
7 Dominic Mazzoni
8 Vaughan Johnson
9
10 Paul Licameli split from EffectBase.h
11
12**********************************************************************/
13#ifndef __AUDACITY_EFFECT_PREVIEW__
14#define __AUDACITY_EFFECT_PREVIEW__
15
16#include <functional>
17
18class EffectBase;
20
22
25void EffectPreview(EffectBase &effect,
26 EffectSettingsAccess &access, std::function<void()> updateUI,
27 bool dryOnly);
28
29#endif
void EffectPreview(EffectBase &effect, EffectSettingsAccess &access, std::function< void()> updateUI, bool dryOnly)
Calculate temporary tracks of limited length with effect applied and play.
Base class for many of the effects in Audacity.
Definition: EffectBase.h:28