FahlGrahn Audio
v1.0.0
Loading...
Searching...
No Matches
CustomAudioParameterFloat.h
1
#pragma once
2
#include <juce_audio_processors/juce_audio_processors.h>
3
4
class
CustomAudioParameterFloat
:
public
juce::AudioParameterFloat
5
{
6
public
:
7
CustomAudioParameterFloat
(
const
juce::ParameterID ¶meterID,
const
juce::String ¶meterName,
8
juce::NormalisableRange<float> normalisableRange,
float
defaultValue,
int
index = -1)
9
: juce::AudioParameterFloat(parameterID, parameterName, normalisableRange, defaultValue), mIndex(index)
10
{
11
}
12
13
int
getIndex()
const
14
{
15
return
mIndex;
16
}
17
18
private
:
19
int
mIndex;
20
};
CustomAudioParameterFloat
Definition
CustomAudioParameterFloat.h:5
EQ
CustomAudioParameterFloat.h
Generated by
1.12.0