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.

25 lines
410B

  1. #include "juce_audio_graph.h"
  2. #include <iostream>
  3. using namespace juce2;
  4. int main()
  5. {
  6. String x = "haha";
  7. std::cout << x << std::endl;
  8. Atomic<float> a;
  9. CharPointer_UTF8 c("c");
  10. HeapBlock<String> hs;
  11. MemoryBlock m;
  12. Array<CharPointer_UTF8> ar;
  13. OwnedArray<String> ows;
  14. AudioSampleBuffer as;
  15. MidiBuffer mb;
  16. MidiMessage ms;
  17. AudioProcessorGraph g;
  18. return 0;
  19. }