Audacity 3.2.0
DoEffect.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*!********************************************************************
3
4 Audacity: A Digital Audio Editor
5
6 DoEffect.h
7
8 Matthieu Hodgkinson
9
10**********************************************************************/
11#pragma once
12
13#include <wx/string.h>
14
15class AudacityProject;
16using PluginID = wxString;
17
18namespace EffectUI
19{
20bool DoEffect(const PluginID& ID, AudacityProject& project, unsigned flags);
21}
wxString PluginID
const auto project
The top-level handle to an Audacity project. It serves as a source of events that other objects can b...
Definition: Project.h:90
bool DoEffect(const PluginID &ID, AudacityProject &project, unsigned flags)
Definition: DoEffect.cpp:30