-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d4b285
commit ce7f583
Showing
8 changed files
with
131 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
============================================================================== | ||
Parameters.cpp | ||
Created: 2 Feb 2023 4:48:43pm | ||
Author: Utente | ||
============================================================================== | ||
*/ | ||
|
||
#include "Parameters.h" | ||
|
||
const juce::String inputID = "input"; | ||
const juce::String inputName = "Input"; | ||
|
||
const juce::String threshID = "thresh"; | ||
const juce::String threshName = "Thresh"; | ||
|
||
const juce::String ratioID = "ratio"; | ||
const juce::String ratioName = "Ratio"; | ||
|
||
const juce::String attackID = "attack"; | ||
const juce::String attackName = "Attack"; | ||
|
||
const juce::String releaseID = "release"; | ||
const juce::String releaseName = "Release"; | ||
|
||
const juce::String outputID = "output"; | ||
const juce::String outputName = "Output"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
============================================================================== | ||
Parameters.h | ||
Created: 2 Feb 2023 4:48:43pm | ||
Author: Utente | ||
============================================================================== | ||
*/ | ||
|
||
#pragma once | ||
#include <JuceHeader.h> | ||
|
||
extern const juce::String inputID; | ||
extern const juce::String inputName; | ||
|
||
extern const juce::String threshID; | ||
extern const juce::String threshName; | ||
|
||
extern const juce::String ratioID; | ||
extern const juce::String ratioName; | ||
|
||
extern const juce::String attackID; | ||
extern const juce::String attackName; | ||
|
||
extern const juce::String releaseID; | ||
extern const juce::String releaseName; | ||
|
||
extern const juce::String outputID; | ||
extern const juce::String outputName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters