/* JuceHeader.h for the testhost tool. Deliberately omits juce_audio_plugin_client/juce_audio_plugin_client.h - this executable hosts plugins, it isn't one - and the ProjectInfo block that JaySynth's own JuceHeader.h derives from JucePlugin_* macros, since none of those exist here. */ #ifndef __TESTHOST_JUCEHEADER__ #define __TESTHOST_JUCEHEADER__ #include "AppConfig.h" #include "modules/juce_core/juce_core.h" #include "modules/juce_events/juce_events.h" #include "modules/juce_data_structures/juce_data_structures.h" #include "modules/juce_graphics/juce_graphics.h" #include "modules/juce_gui_basics/juce_gui_basics.h" #include "modules/juce_gui_extra/juce_gui_extra.h" #include "modules/juce_audio_basics/juce_audio_basics.h" #include "modules/juce_audio_formats/juce_audio_formats.h" #include "modules/juce_audio_devices/juce_audio_devices.h" #include "modules/juce_audio_processors/juce_audio_processors.h" #if ! DONT_SET_USING_JUCE_NAMESPACE using namespace juce; #endif #include #endif // __TESTHOST_JUCEHEADER__