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.

100 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. BEGIN_JUCE_NAMESPACE
  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_DECIBELS_JUCEHEADER__
  31. #include "effects/juce_Decibels.h"
  32. #endif
  33. #ifndef __JUCE_IIRFILTER_JUCEHEADER__
  34. #include "effects/juce_IIRFilter.h"
  35. #endif
  36. #ifndef __JUCE_REVERB_JUCEHEADER__
  37. #include "effects/juce_Reverb.h"
  38. #endif
  39. #ifndef __JUCE_MIDIBUFFER_JUCEHEADER__
  40. #include "midi/juce_MidiBuffer.h"
  41. #endif
  42. #ifndef __JUCE_MIDIFILE_JUCEHEADER__
  43. #include "midi/juce_MidiFile.h"
  44. #endif
  45. #ifndef __JUCE_MIDIKEYBOARDSTATE_JUCEHEADER__
  46. #include "midi/juce_MidiKeyboardState.h"
  47. #endif
  48. #ifndef __JUCE_MIDIMESSAGE_JUCEHEADER__
  49. #include "midi/juce_MidiMessage.h"
  50. #endif
  51. #ifndef __JUCE_MIDIMESSAGESEQUENCE_JUCEHEADER__
  52. #include "midi/juce_MidiMessageSequence.h"
  53. #endif
  54. #ifndef __JUCE_AUDIOSOURCE_JUCEHEADER__
  55. #include "sources/juce_AudioSource.h"
  56. #endif
  57. #ifndef __JUCE_BUFFERINGAUDIOSOURCE_JUCEHEADER__
  58. #include "sources/juce_BufferingAudioSource.h"
  59. #endif
  60. #ifndef __JUCE_CHANNELREMAPPINGAUDIOSOURCE_JUCEHEADER__
  61. #include "sources/juce_ChannelRemappingAudioSource.h"
  62. #endif
  63. #ifndef __JUCE_IIRFILTERAUDIOSOURCE_JUCEHEADER__
  64. #include "sources/juce_IIRFilterAudioSource.h"
  65. #endif
  66. #ifndef __JUCE_MIXERAUDIOSOURCE_JUCEHEADER__
  67. #include "sources/juce_MixerAudioSource.h"
  68. #endif
  69. #ifndef __JUCE_POSITIONABLEAUDIOSOURCE_JUCEHEADER__
  70. #include "sources/juce_PositionableAudioSource.h"
  71. #endif
  72. #ifndef __JUCE_RESAMPLINGAUDIOSOURCE_JUCEHEADER__
  73. #include "sources/juce_ResamplingAudioSource.h"
  74. #endif
  75. #ifndef __JUCE_REVERBAUDIOSOURCE_JUCEHEADER__
  76. #include "sources/juce_ReverbAudioSource.h"
  77. #endif
  78. #ifndef __JUCE_TONEGENERATORAUDIOSOURCE_JUCEHEADER__
  79. #include "sources/juce_ToneGeneratorAudioSource.h"
  80. #endif
  81. #ifndef __JUCE_SYNTHESISER_JUCEHEADER__
  82. #include "synthesisers/juce_Synthesiser.h"
  83. #endif
  84. // END_AUTOINCLUDE
  85. END_JUCE_NAMESPACE
  86. #endif // __JUCE_AUDIO_BASICS_JUCEHEADER__