fixed circular reference

This commit is contained in:
Alex Birch
2018-04-10 01:17:50 +01:00
parent 27b9dfb9df
commit 9427a029b9
6 changed files with 46 additions and 11 deletions

View File

@ -5,7 +5,7 @@
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
#include "PluginProcessor.h"
#include "SharesParams.h"
#include <fluidsynth.h>
#include <memory>
#include "PresetsToBanks.h"
@ -20,7 +20,7 @@ public:
~FluidSynthModel();
fluid_synth_t* getSynth();
void initialise(JuicySFAudioProcessor& p);
void initialise(SharesParams& p);
BanksToPresets getBanks();
@ -57,7 +57,7 @@ public:
void removeListener (Listener* listener);
private:
JuicySFAudioProcessor* processor;
SharesParams* sharesParams;
fluid_synth_t* synth;
fluid_settings_t* settings;