Audio plugin host https://kx.studio/carla
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.

158 lines
4.9KB

  1. /*
  2. ==============================================================================
  3. The Synthesis ToolKit in C++ (STK) is a set of open source audio
  4. signal processing and algorithmic synthesis classes written in the
  5. C++ programming language. STK was designed to facilitate rapid
  6. development of music synthesis and audio processing software, with
  7. an emphasis on cross-platform functionality, realtime control,
  8. ease of use, and educational example code. STK currently runs
  9. with realtime support (audio and MIDI) on Linux, Macintosh OS X,
  10. and Windows computer platforms. Generic, non-realtime support has
  11. been tested under NeXTStep, Sun, and other platforms and should
  12. work with any standard C++ compiler.
  13. STK WWW site: http://ccrma.stanford.edu/software/stk/
  14. The Synthesis ToolKit in C++ (STK)
  15. Copyright (c) 1995-2011 Perry R. Cook and Gary P. Scavone
  16. Permission is hereby granted, free of charge, to any person
  17. obtaining a copy of this software and associated documentation files
  18. (the "Software"), to deal in the Software without restriction,
  19. including without limitation the rights to use, copy, modify, merge,
  20. publish, distribute, sublicense, and/or sell copies of the Software,
  21. and to permit persons to whom the Software is furnished to do so,
  22. subject to the following conditions:
  23. The above copyright notice and this permission notice shall be
  24. included in all copies or substantial portions of the Software.
  25. Any person wishing to distribute modifications to the Software is
  26. asked to send the modifications to the original developer so that
  27. they can be incorporated into the canonical version. This is,
  28. however, not a binding provision of this license.
  29. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  30. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  31. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  32. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
  33. ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
  34. CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  35. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  36. ==============================================================================
  37. */
  38. #ifndef __STK_STKHEADER__
  39. #define __STK_STKHEADER__
  40. #include "../juce_core.h"
  41. #if JUCE_LITTLE_ENDIAN && ! defined (__LITTLE_ENDIAN__)
  42. #define __LITTLE_ENDIAN__
  43. #endif
  44. #if JUCE_MAC
  45. #define __MACOSX_CORE__
  46. #endif
  47. #if JUCE_MSVC
  48. #pragma warning (push)
  49. #pragma warning (disable: 4127 4702 4244 4305 4100 4996 4309)
  50. #endif
  51. //=============================================================================
  52. #include "stk/ADSR.h"
  53. #include "stk/Asymp.h"
  54. #include "stk/BandedWG.h"
  55. #include "stk/BeeThree.h"
  56. #include "stk/BiQuad.h"
  57. #include "stk/Blit.h"
  58. #include "stk/BlitSaw.h"
  59. #include "stk/BlitSquare.h"
  60. #include "stk/BlowBotl.h"
  61. #include "stk/BlowHole.h"
  62. #include "stk/Bowed.h"
  63. #include "stk/BowTable.h"
  64. #include "stk/Brass.h"
  65. #include "stk/Chorus.h"
  66. #include "stk/Clarinet.h"
  67. #include "stk/Cubic.h"
  68. #include "stk/Delay.h"
  69. #include "stk/DelayA.h"
  70. #include "stk/DelayL.h"
  71. #include "stk/Drummer.h"
  72. #include "stk/Echo.h"
  73. #include "stk/Effect.h"
  74. #include "stk/Envelope.h"
  75. #include "stk/FileLoop.h"
  76. #include "stk/FileRead.h"
  77. #include "stk/FileWrite.h"
  78. #include "stk/FileWvIn.h"
  79. #include "stk/FileWvOut.h"
  80. #include "stk/Filter.h"
  81. #include "stk/Fir.h"
  82. #include "stk/Flute.h"
  83. #include "stk/FM.h"
  84. #include "stk/FMVoices.h"
  85. #include "stk/FormSwep.h"
  86. #include "stk/Function.h"
  87. #include "stk/Generator.h"
  88. #include "stk/Granulate.h"
  89. #include "stk/HevyMetl.h"
  90. #include "stk/Iir.h"
  91. #include "stk/Instrmnt.h"
  92. #include "stk/JCRev.h"
  93. #include "stk/JetTable.h"
  94. #include "stk/LentPitShift.h"
  95. #include "stk/Mandolin.h"
  96. #include "stk/Mesh2D.h"
  97. #include "stk/MidiFileIn.h"
  98. #include "stk/Modal.h"
  99. #include "stk/ModalBar.h"
  100. #include "stk/Modulate.h"
  101. #include "stk/Moog.h"
  102. #include "stk/Noise.h"
  103. #include "stk/NRev.h"
  104. #include "stk/OnePole.h"
  105. #include "stk/OneZero.h"
  106. #include "stk/PercFlut.h"
  107. #include "stk/Phonemes.h"
  108. #include "stk/PitShift.h"
  109. #include "stk/Plucked.h"
  110. #include "stk/PoleZero.h"
  111. #include "stk/PRCRev.h"
  112. #include "stk/ReedTable.h"
  113. #include "stk/Resonate.h"
  114. #include "stk/Rhodey.h"
  115. #include "stk/Sampler.h"
  116. #include "stk/Saxofony.h"
  117. #include "stk/Shakers.h"
  118. #include "stk/Simple.h"
  119. #include "stk/SineWave.h"
  120. #include "stk/SingWave.h"
  121. #include "stk/Sitar.h"
  122. #include "stk/Skini.h"
  123. #include "stk/Sphere.h"
  124. #include "stk/StifKarp.h"
  125. #include "stk/Stk.h"
  126. #include "stk/TapDelay.h"
  127. #include "stk/TubeBell.h"
  128. #include "stk/Twang.h"
  129. #include "stk/TwoPole.h"
  130. #include "stk/TwoZero.h"
  131. #include "stk/Vector3D.h"
  132. #include "stk/Voicer.h"
  133. #include "stk/VoicForm.h"
  134. #include "stk/Whistle.h"
  135. #include "stk/Wurley.h"
  136. #include "stk/WvIn.h"
  137. #include "stk/WvOut.h"
  138. #if JUCE_MSVC
  139. #pragma warning (pop)
  140. #endif
  141. #endif // __STK_STKHEADER__