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.

62 lines
2.0KB

  1. /*
  2. ==============================================================================
  3. This is an automatically generated GUI class created by the Projucer!
  4. Be careful when adding custom code to these files, as only the code within
  5. the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
  6. and re-saved.
  7. Created with Projucer version: %%version%%
  8. ------------------------------------------------------------------------------
  9. The Projucer is part of the JUCE library - "Jules' Utility Class Extensions"
  10. Copyright (c) 2015 - ROLI Ltd.
  11. ==============================================================================
  12. */
  13. #pragma once
  14. //[Headers] -- You can add your own extra header files here --
  15. %%includeJUCEHeader%%
  16. //[/Headers]
  17. %%includeFilesH%%
  18. //==============================================================================
  19. /**
  20. //[Comments]
  21. An auto-generated component, created by the Projucer.
  22. Describe your class and how it works here!
  23. //[/Comments]
  24. */
  25. %%classDeclaration%%
  26. {
  27. public:
  28. //==============================================================================
  29. %%className%% (%%constructorParams%%);
  30. ~%%className%%();
  31. //==============================================================================
  32. //[UserMethods] -- You can add your own custom methods in this section.
  33. //[/UserMethods]
  34. %%publicMemberDeclarations%%
  35. private:
  36. //[UserVariables] -- You can add your own custom variables in this section.
  37. //[/UserVariables]
  38. //==============================================================================
  39. %%privateMemberDeclarations%%
  40. //==============================================================================
  41. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%className%%)
  42. };
  43. //[EndFile] You can add extra defines here...
  44. //[/EndFile]