The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
3.1KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef JUCE_AUDIO_PROCESSORS_H_INCLUDED
  18. #define JUCE_AUDIO_PROCESSORS_H_INCLUDED
  19. #include "../juce_gui_basics/juce_gui_basics.h"
  20. #include "../juce_audio_basics/juce_audio_basics.h"
  21. //=============================================================================
  22. /** Config: JUCE_PLUGINHOST_VST
  23. Enables the VST audio plugin hosting classes. This requires the Steinberg VST SDK to be
  24. installed on your machine.
  25. @see VSTPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_AU
  26. */
  27. #ifndef JUCE_PLUGINHOST_VST
  28. #define JUCE_PLUGINHOST_VST 0
  29. #endif
  30. /** Config: JUCE_PLUGINHOST_AU
  31. Enables the AudioUnit plugin hosting classes. This is Mac-only, of course.
  32. @see AudioUnitPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST
  33. */
  34. #ifndef JUCE_PLUGINHOST_AU
  35. #define JUCE_PLUGINHOST_AU 0
  36. #endif
  37. #if ! (JUCE_PLUGINHOST_AU || JUCE_PLUGINHOST_VST)
  38. // #error "You need to set either the JUCE_PLUGINHOST_AU anr/or JUCE_PLUGINHOST_VST flags if you're using this module!"
  39. #endif
  40. #if ! (defined (JUCE_SUPPORT_CARBON) || JUCE_64BIT)
  41. #define JUCE_SUPPORT_CARBON 1
  42. #endif
  43. //=============================================================================
  44. //=============================================================================
  45. namespace juce
  46. {
  47. class AudioProcessor;
  48. #include "processors/juce_AudioPlayHead.h"
  49. #include "processors/juce_AudioProcessorEditor.h"
  50. #include "processors/juce_AudioProcessorListener.h"
  51. #include "processors/juce_AudioProcessor.h"
  52. #include "processors/juce_PluginDescription.h"
  53. #include "processors/juce_AudioPluginInstance.h"
  54. #include "processors/juce_AudioProcessorGraph.h"
  55. #include "processors/juce_GenericAudioProcessorEditor.h"
  56. #include "format/juce_AudioPluginFormat.h"
  57. #include "format/juce_AudioPluginFormatManager.h"
  58. #include "scanning/juce_KnownPluginList.h"
  59. #include "format_types/juce_AudioUnitPluginFormat.h"
  60. #include "format_types/juce_LADSPAPluginFormat.h"
  61. #include "format_types/juce_VSTMidiEventList.h"
  62. #include "format_types/juce_VSTPluginFormat.h"
  63. #include "scanning/juce_PluginDirectoryScanner.h"
  64. #include "scanning/juce_PluginListComponent.h"
  65. }
  66. #endif // JUCE_AUDIO_PROCESSORS_H_INCLUDED