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.

99 lines
3.7KB

  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, VST3PluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_AU, JUCE_PLUGINHOST_VST3
  26. */
  27. #ifndef JUCE_PLUGINHOST_VST
  28. #define JUCE_PLUGINHOST_VST 0
  29. #endif
  30. /** Config: JUCE_PLUGINHOST_VST3
  31. Enables the VST3 audio plugin hosting classes. This requires the Steinberg VST3 SDK to be
  32. installed on your machine.
  33. @see VSTPluginFormat, VST3PluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST, JUCE_PLUGINHOST_AU
  34. */
  35. #ifndef JUCE_PLUGINHOST_VST3
  36. #define JUCE_PLUGINHOST_VST3 0
  37. #endif
  38. /** Config: JUCE_PLUGINHOST_AU
  39. Enables the AudioUnit plugin hosting classes. This is Mac-only, of course.
  40. @see AudioUnitPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST, JUCE_PLUGINHOST_VST3
  41. */
  42. #ifndef JUCE_PLUGINHOST_AU
  43. #define JUCE_PLUGINHOST_AU 0
  44. #endif
  45. #if ! (JUCE_PLUGINHOST_AU || JUCE_PLUGINHOST_VST || JUCE_PLUGINHOST_VST3)
  46. // #error "You need to set either the JUCE_PLUGINHOST_AU and/or JUCE_PLUGINHOST_VST and/or JUCE_PLUGINHOST_VST3 flags if you're using this module!"
  47. #endif
  48. #if ! (defined (JUCE_SUPPORT_CARBON) || JUCE_64BIT)
  49. #define JUCE_SUPPORT_CARBON 1
  50. #endif
  51. //=============================================================================
  52. //=============================================================================
  53. namespace juce
  54. {
  55. class AudioProcessor;
  56. #include "processors/juce_AudioPlayHead.h"
  57. #include "processors/juce_AudioProcessorEditor.h"
  58. #include "processors/juce_AudioProcessorListener.h"
  59. #include "processors/juce_AudioProcessorParameter.h"
  60. #include "processors/juce_AudioProcessor.h"
  61. #include "processors/juce_PluginDescription.h"
  62. #include "processors/juce_AudioPluginInstance.h"
  63. #include "processors/juce_AudioProcessorGraph.h"
  64. #include "processors/juce_GenericAudioProcessorEditor.h"
  65. #include "format/juce_AudioPluginFormat.h"
  66. #include "format/juce_AudioPluginFormatManager.h"
  67. #include "scanning/juce_KnownPluginList.h"
  68. #include "format_types/juce_AudioUnitPluginFormat.h"
  69. #include "format_types/juce_LADSPAPluginFormat.h"
  70. #include "format_types/juce_VSTMidiEventList.h"
  71. #include "format_types/juce_VSTPluginFormat.h"
  72. #include "format_types/juce_VST3PluginFormat.h"
  73. #include "scanning/juce_PluginDirectoryScanner.h"
  74. #include "scanning/juce_PluginListComponent.h"
  75. }
  76. #endif // JUCE_AUDIO_PROCESSORS_H_INCLUDED