├── .gitignore ├── JucePresetManager.jucer ├── README.md └── Source ├── Gui └── PresetPanel.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── Service ├── PresetManager.cpp └── PresetManager.h └── Utility └── ParameterHelper.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/.gitignore -------------------------------------------------------------------------------- /JucePresetManager.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/JucePresetManager.jucer -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/README.md -------------------------------------------------------------------------------- /Source/Gui/PresetPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/Source/Gui/PresetPanel.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/Service/PresetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/Source/Service/PresetManager.cpp -------------------------------------------------------------------------------- /Source/Service/PresetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/Source/Service/PresetManager.h -------------------------------------------------------------------------------- /Source/Utility/ParameterHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/jucePresetManagement/HEAD/Source/Utility/ParameterHelper.h --------------------------------------------------------------------------------