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.

125 lines
4.5KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #ifndef __JUCE_AUDIO_PROCESSORS_JUCEHEADER__
  19. #define __JUCE_AUDIO_PROCESSORS_JUCEHEADER__
  20. #include "../juce_gui_basics/juce_gui_basics.h"
  21. #include "../juce_audio_basics/juce_audio_basics.h"
  22. //=============================================================================
  23. /** Config: JUCE_PLUGINHOST_VST
  24. Enables the VST audio plugin hosting classes. This requires the Steinberg VST SDK to be
  25. installed on your machine.
  26. @see VSTPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_AU
  27. */
  28. #ifndef JUCE_PLUGINHOST_VST
  29. #define JUCE_PLUGINHOST_VST 0
  30. #endif
  31. /** Config: JUCE_PLUGINHOST_AU
  32. Enables the AudioUnit plugin hosting classes. This is Mac-only, of course.
  33. @see AudioUnitPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST
  34. */
  35. #ifndef JUCE_PLUGINHOST_AU
  36. #define JUCE_PLUGINHOST_AU 0
  37. #endif
  38. #if ! (JUCE_PLUGINHOST_AU || JUCE_PLUGINHOST_VST)
  39. // #error "You need to set either the JUCE_PLUGINHOST_AU anr/or JUCE_PLUGINHOST_VST flags if you're using this module!"
  40. #endif
  41. #ifndef JUCE_SUPPORT_CARBON
  42. #define JUCE_SUPPORT_CARBON 1
  43. #endif
  44. //=============================================================================
  45. //=============================================================================
  46. #include "../juce_core/system/juce_StandardHeader.h"
  47. BEGIN_JUCE_NAMESPACE
  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_DIRECTXPLUGINFORMAT_JUCEHEADER__
  83. #include "format_types/juce_DirectXPluginFormat.h"
  84. #endif
  85. #ifndef __JUCE_LADSPAPLUGINFORMAT_JUCEHEADER__
  86. #include "format_types/juce_LADSPAPluginFormat.h"
  87. #endif
  88. #include "format_types/juce_VSTMidiEventList.h"
  89. #ifndef __JUCE_VSTPLUGINFORMAT_JUCEHEADER__
  90. #include "format_types/juce_VSTPluginFormat.h"
  91. #endif
  92. #ifndef __JUCE_KNOWNPLUGINLIST_JUCEHEADER__
  93. #include "scanning/juce_KnownPluginList.h"
  94. #endif
  95. #ifndef __JUCE_PLUGINDIRECTORYSCANNER_JUCEHEADER__
  96. #include "scanning/juce_PluginDirectoryScanner.h"
  97. #endif
  98. #ifndef __JUCE_PLUGINLISTCOMPONENT_JUCEHEADER__
  99. #include "scanning/juce_PluginListComponent.h"
  100. #endif
  101. // END_AUTOINCLUDE
  102. END_JUCE_NAMESPACE
  103. #endif // __JUCE_AUDIO_PROCESSORS_JUCEHEADER__