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.

122 lines
4.2KB

  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_JUCEHEADER__
  18. #define __JUCE_AUDIO_PROCESSORS_JUCEHEADER__
  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. #include "../juce_core/system/juce_StandardHeader.h"
  46. namespace juce
  47. {
  48. // START_AUTOINCLUDE processors, format, format_types, scanning
  49. #ifndef __JUCE_AUDIOPLAYHEAD_JUCEHEADER__
  50. #include "processors/juce_AudioPlayHead.h"
  51. #endif
  52. #ifndef __JUCE_AUDIOPLUGININSTANCE_JUCEHEADER__
  53. #include "processors/juce_AudioPluginInstance.h"
  54. #endif
  55. #ifndef __JUCE_AUDIOPROCESSOR_JUCEHEADER__
  56. #include "processors/juce_AudioProcessor.h"
  57. #endif
  58. #ifndef __JUCE_AUDIOPROCESSOREDITOR_JUCEHEADER__
  59. #include "processors/juce_AudioProcessorEditor.h"
  60. #endif
  61. #ifndef __JUCE_AUDIOPROCESSORGRAPH_JUCEHEADER__
  62. #include "processors/juce_AudioProcessorGraph.h"
  63. #endif
  64. #ifndef __JUCE_AUDIOPROCESSORLISTENER_JUCEHEADER__
  65. #include "processors/juce_AudioProcessorListener.h"
  66. #endif
  67. #ifndef __JUCE_GENERICAUDIOPROCESSOREDITOR_JUCEHEADER__
  68. #include "processors/juce_GenericAudioProcessorEditor.h"
  69. #endif
  70. #ifndef __JUCE_PLUGINDESCRIPTION_JUCEHEADER__
  71. #include "processors/juce_PluginDescription.h"
  72. #endif
  73. #ifndef __JUCE_AUDIOPLUGINFORMAT_JUCEHEADER__
  74. #include "format/juce_AudioPluginFormat.h"
  75. #endif
  76. #ifndef __JUCE_AUDIOPLUGINFORMATMANAGER_JUCEHEADER__
  77. #include "format/juce_AudioPluginFormatManager.h"
  78. #endif
  79. #ifndef __JUCE_AUDIOUNITPLUGINFORMAT_JUCEHEADER__
  80. #include "format_types/juce_AudioUnitPluginFormat.h"
  81. #endif
  82. #ifndef __JUCE_LADSPAPLUGINFORMAT_JUCEHEADER__
  83. #include "format_types/juce_LADSPAPluginFormat.h"
  84. #endif
  85. #include "format_types/juce_VSTMidiEventList.h"
  86. #ifndef __JUCE_VSTPLUGINFORMAT_JUCEHEADER__
  87. #include "format_types/juce_VSTPluginFormat.h"
  88. #endif
  89. #ifndef __JUCE_KNOWNPLUGINLIST_JUCEHEADER__
  90. #include "scanning/juce_KnownPluginList.h"
  91. #endif
  92. #ifndef __JUCE_PLUGINDIRECTORYSCANNER_JUCEHEADER__
  93. #include "scanning/juce_PluginDirectoryScanner.h"
  94. #endif
  95. #ifndef __JUCE_PLUGINLISTCOMPONENT_JUCEHEADER__
  96. #include "scanning/juce_PluginListComponent.h"
  97. #endif
  98. // END_AUTOINCLUDE
  99. }
  100. #endif // __JUCE_AUDIO_PROCESSORS_JUCEHEADER__