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.

24 lines
689B

  1. /*
  2. ==============================================================================
  3. This file was auto-generated and contains the startup code for a PIP.
  4. ==============================================================================
  5. */
  6. #include <JuceHeader.h>
  7. #include "${JUCE_PIP_HEADER}"
  8. //==============================================================================
  9. juce::AudioProcessor* JUCE_CALLTYPE createPluginFilter()
  10. {
  11. return new ${JUCE_PIP_MAIN_CLASS}();
  12. }
  13. #if JucePlugin_Enable_ARA
  14. const ARA::ARAFactory* JUCE_CALLTYPE createARAFactory()
  15. {
  16. return juce::ARADocumentControllerSpecialisation::createARAFactory<${JUCE_PIP_DOCUMENTCONTROLLER_CLASS}>();
  17. }
  18. #endif