Audacity 3.2.0
DynamicRangeProcessorDummyOutputs.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 DynamicRangeProcessorDummyOutputs.h
7
8 Matthieu Hodgkinson
9
10**********************************************************************/
11#pragma once
12
13#include "EffectInterface.h"
14
18{
19private:
20 std::unique_ptr<EffectOutputs> Clone() const override
21 {
22 return std::make_unique<DynamicRangeProcessorDummyOutputs>();
23 }
24
25 void Assign(EffectOutputs&& src) override
26 {
27 }
28};
void Assign(EffectOutputs &&src) override
Update one Outputs object from another.
std::unique_ptr< EffectOutputs > Clone() const override
Hold values to send to effect output meters.