| 
							- /*
 - BEGIN_JUCE_MODULE_DECLARATION
 -     ID:               SFZero
 -     vendor:           altalogix
 -     version:          2.0.2
 -     name:             SFZero sfz player
 -     description:      SFZero .szf/.sf2 soundfont player; forked from https://github.com/stevefolta/SFZero and converted to Juce module by Leo Olivers
 -     website:          https://github.com/altalogix/SFZero
 -     dependencies:     juce_gui_basics, juce_audio_basics, juce_audio_processors
 - 	license:          MIT
 - END_JUCE_MODULE_DECLARATION 
 - */
 - 
 - #ifndef INCLUDED_SFZERO_H
 - #define INCLUDED_SFZERO_H
 - 
 - #include "sfzero/SFZCommon.h"
 - #include "sfzero/SFZDebug.h"
 - #include "sfzero/SFZEG.h"
 - #include "sfzero/SFZReader.h"
 - #include "sfzero/SFZRegion.h"
 - #include "sfzero/SFZSample.h"
 - #include "sfzero/SFZSound.h"
 - #include "sfzero/SFZSynth.h"
 - #include "sfzero/SFZVoice.h"
 - 
 - 
 - #endif   // INCLUDED_SFZERO_H
 
 
  |