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.

49 lines
1.4KB

  1. /*
  2. * Standalone Juce AudioProcessorGraph
  3. * Copyright (C) 2015 ROLI Ltd.
  4. * Copyright (C) 2017 Filipe Coelho <falktx@falktx.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  17. */
  18. #include "juce_audio_graph.h"
  19. #include <locale>
  20. #include <cctype>
  21. #include <cstdarg>
  22. #include <iostream>
  23. // #include <wctype.h>
  24. //==============================================================================
  25. namespace juce2
  26. {
  27. #include "memory/juce_MemoryBlock.cpp"
  28. #include "text/juce_CharacterFunctions.cpp"
  29. #include "text/juce_String.cpp"
  30. // #include "streams/juce_InputStream.cpp"
  31. // #include "streams/juce_OutputStream.cpp"
  32. #include "midi/juce_MidiBuffer.cpp"
  33. #include "midi/juce_MidiMessage.cpp"
  34. #include "processors/juce_AudioProcessor.cpp"
  35. #include "processors/juce_AudioProcessorGraph.cpp"
  36. #include "xml/juce_XmlElement.cpp"
  37. #include "xml/juce_XmlDocument.cpp"
  38. }