Almost getting there but some still is still messed up...

This commit is contained in:
xenakios
2018-04-26 23:07:08 +03:00
parent a4a8f99f0b
commit c8f865dd4a
5 changed files with 47 additions and 4 deletions

View File

@ -115,7 +115,7 @@ public:
class PaulstretchpluginAudioProcessorEditor;
class PaulstretchpluginAudioProcessor : public AudioProcessor,
public MultiTimer, public VSTCallbackHandler
public MultiTimer, public VSTCallbackHandler, public AudioProcessorParameter::Listener
{
public:
using EditorType = PaulstretchpluginAudioProcessorEditor;
@ -152,6 +152,9 @@ public:
const String getProgramName (int index) override;
void changeProgramName (int index, const String& newName) override;
void parameterValueChanged(int parameterIndex, float newValue) override;
void parameterGestureChanged(int parameterIndex, bool gestureIsStarting) override;
//==============================================================================
void getStateInformation (MemoryBlock& destData) override;
void setStateInformation (const void* data, int sizeInBytes) override;