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.

134 lines
5.0KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI 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. /*******************************************************************************
  18. The block below describes the properties of this module, and is read by
  19. the Projucer to automatically generate project code that uses it.
  20. For details about the syntax and how to create or use a module, see the
  21. JUCE Module Format.txt file.
  22. BEGIN_JUCE_MODULE_DECLARATION
  23. ID: juce_audio_processors
  24. vendor: juce
  25. version: 4.2.4
  26. name: JUCE audio processor classes
  27. description: Classes for loading and playing VST, AU, or internally-generated audio processors.
  28. website: http://www.juce.com/juce
  29. license: GPL/Commercial
  30. dependencies: juce_gui_extra, juce_audio_basics
  31. OSXFrameworks: CoreAudio CoreMIDI AudioToolbox
  32. iOSFrameworks: AudioToolbox
  33. END_JUCE_MODULE_DECLARATION
  34. *******************************************************************************/
  35. #ifndef JUCE_AUDIO_PROCESSORS_H_INCLUDED
  36. #define JUCE_AUDIO_PROCESSORS_H_INCLUDED
  37. #include <juce_gui_basics/juce_gui_basics.h>
  38. #include <juce_audio_basics/juce_audio_basics.h>
  39. //==============================================================================
  40. /** Config: JUCE_PLUGINHOST_VST
  41. Enables the VST audio plugin hosting classes.
  42. @see VSTPluginFormat, VST3PluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_AU, JUCE_PLUGINHOST_VST3
  43. */
  44. #ifndef JUCE_PLUGINHOST_VST
  45. #define JUCE_PLUGINHOST_VST 0
  46. #endif
  47. /** Config: JUCE_PLUGINHOST_VST3
  48. Enables the VST3 audio plugin hosting classes. This requires the Steinberg VST3 SDK to be
  49. installed on your machine.
  50. @see VSTPluginFormat, VST3PluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST, JUCE_PLUGINHOST_AU
  51. */
  52. #ifndef JUCE_PLUGINHOST_VST3
  53. #define JUCE_PLUGINHOST_VST3 0
  54. #endif
  55. /** Config: JUCE_PLUGINHOST_AU
  56. Enables the AudioUnit plugin hosting classes. This is Mac-only, of course.
  57. @see AudioUnitPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST, JUCE_PLUGINHOST_VST3
  58. */
  59. #ifndef JUCE_PLUGINHOST_AU
  60. #define JUCE_PLUGINHOST_AU 0
  61. #endif
  62. #if ! (JUCE_PLUGINHOST_AU || JUCE_PLUGINHOST_VST || JUCE_PLUGINHOST_VST3)
  63. // #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!"
  64. #endif
  65. #if ! (defined (JUCE_SUPPORT_CARBON) || JUCE_64BIT || JUCE_IOS)
  66. #define JUCE_SUPPORT_CARBON 1
  67. #endif
  68. #ifndef JUCE_SUPPORT_LEGACY_AUDIOPROCESSOR
  69. #define JUCE_SUPPORT_LEGACY_AUDIOPROCESSOR 1
  70. #endif
  71. //==============================================================================
  72. //==============================================================================
  73. namespace juce
  74. {
  75. class AudioProcessor;
  76. #include "processors/juce_AudioPlayHead.h"
  77. #include "processors/juce_AudioProcessorEditor.h"
  78. #include "processors/juce_AudioProcessorListener.h"
  79. #include "processors/juce_AudioProcessorParameter.h"
  80. #include "processors/juce_AudioProcessor.h"
  81. #include "processors/juce_PluginDescription.h"
  82. #include "processors/juce_AudioPluginInstance.h"
  83. #include "processors/juce_AudioProcessorGraph.h"
  84. #include "processors/juce_GenericAudioProcessorEditor.h"
  85. #include "format/juce_AudioPluginFormat.h"
  86. #include "format/juce_AudioPluginFormatManager.h"
  87. #include "scanning/juce_KnownPluginList.h"
  88. #include "format_types/juce_AudioUnitPluginFormat.h"
  89. #include "format_types/juce_LADSPAPluginFormat.h"
  90. #include "format_types/juce_VSTMidiEventList.h"
  91. #include "format_types/juce_VSTPluginFormat.h"
  92. #include "format_types/juce_VST3PluginFormat.h"
  93. #include "scanning/juce_PluginDirectoryScanner.h"
  94. #include "scanning/juce_PluginListComponent.h"
  95. #include "utilities/juce_AudioProcessorValueTreeState.h"
  96. #include "utilities/juce_AudioProcessorParameterWithID.h"
  97. #include "utilities/juce_AudioParameterFloat.h"
  98. #include "utilities/juce_AudioParameterInt.h"
  99. #include "utilities/juce_AudioParameterBool.h"
  100. #include "utilities/juce_AudioParameterChoice.h"
  101. }
  102. #endif // JUCE_AUDIO_PROCESSORS_H_INCLUDED