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.

101 lines
3.4KB

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