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.

106 lines
3.4KB

  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_BASICS_JUCEHEADER__
  18. #define __JUCE_AUDIO_BASICS_JUCEHEADER__
  19. #include "../juce_core/juce_core.h"
  20. //=============================================================================
  21. namespace juce
  22. {
  23. // START_AUTOINCLUDE buffers, effects, midi, sources, synthesisers
  24. #ifndef __JUCE_AUDIODATACONVERTERS_JUCEHEADER__
  25. #include "buffers/juce_AudioDataConverters.h"
  26. #endif
  27. #ifndef __JUCE_AUDIOSAMPLEBUFFER_JUCEHEADER__
  28. #include "buffers/juce_AudioSampleBuffer.h"
  29. #endif
  30. #ifndef __JUCE_FLOATVECTOROPERATIONS_JUCEHEADER__
  31. #include "buffers/juce_FloatVectorOperations.h"
  32. #endif
  33. #ifndef __JUCE_DECIBELS_JUCEHEADER__
  34. #include "effects/juce_Decibels.h"
  35. #endif
  36. #ifndef __JUCE_IIRFILTER_JUCEHEADER__
  37. #include "effects/juce_IIRFilter.h"
  38. #endif
  39. #ifndef __JUCE_LAGRANGEINTERPOLATOR_JUCEHEADER__
  40. #include "effects/juce_LagrangeInterpolator.h"
  41. #endif
  42. #ifndef __JUCE_REVERB_JUCEHEADER__
  43. #include "effects/juce_Reverb.h"
  44. #endif
  45. #ifndef __JUCE_MIDIBUFFER_JUCEHEADER__
  46. #include "midi/juce_MidiBuffer.h"
  47. #endif
  48. #ifndef __JUCE_MIDIFILE_JUCEHEADER__
  49. #include "midi/juce_MidiFile.h"
  50. #endif
  51. #ifndef __JUCE_MIDIKEYBOARDSTATE_JUCEHEADER__
  52. #include "midi/juce_MidiKeyboardState.h"
  53. #endif
  54. #ifndef __JUCE_MIDIMESSAGE_JUCEHEADER__
  55. #include "midi/juce_MidiMessage.h"
  56. #endif
  57. #ifndef __JUCE_MIDIMESSAGESEQUENCE_JUCEHEADER__
  58. #include "midi/juce_MidiMessageSequence.h"
  59. #endif
  60. #ifndef __JUCE_AUDIOSOURCE_JUCEHEADER__
  61. #include "sources/juce_AudioSource.h"
  62. #endif
  63. #ifndef __JUCE_BUFFERINGAUDIOSOURCE_JUCEHEADER__
  64. #include "sources/juce_BufferingAudioSource.h"
  65. #endif
  66. #ifndef __JUCE_CHANNELREMAPPINGAUDIOSOURCE_JUCEHEADER__
  67. #include "sources/juce_ChannelRemappingAudioSource.h"
  68. #endif
  69. #ifndef __JUCE_IIRFILTERAUDIOSOURCE_JUCEHEADER__
  70. #include "sources/juce_IIRFilterAudioSource.h"
  71. #endif
  72. #ifndef __JUCE_MIXERAUDIOSOURCE_JUCEHEADER__
  73. #include "sources/juce_MixerAudioSource.h"
  74. #endif
  75. #ifndef __JUCE_POSITIONABLEAUDIOSOURCE_JUCEHEADER__
  76. #include "sources/juce_PositionableAudioSource.h"
  77. #endif
  78. #ifndef __JUCE_RESAMPLINGAUDIOSOURCE_JUCEHEADER__
  79. #include "sources/juce_ResamplingAudioSource.h"
  80. #endif
  81. #ifndef __JUCE_REVERBAUDIOSOURCE_JUCEHEADER__
  82. #include "sources/juce_ReverbAudioSource.h"
  83. #endif
  84. #ifndef __JUCE_TONEGENERATORAUDIOSOURCE_JUCEHEADER__
  85. #include "sources/juce_ToneGeneratorAudioSource.h"
  86. #endif
  87. #ifndef __JUCE_SYNTHESISER_JUCEHEADER__
  88. #include "synthesisers/juce_Synthesiser.h"
  89. #endif
  90. // END_AUTOINCLUDE
  91. }
  92. #endif // __JUCE_AUDIO_BASICS_JUCEHEADER__