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.

64 lines
2.1KB

  1. /*
  2. ==============================================================================
  3. This is an automatically generated GUI class created by the Introjucer!
  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 Introjucer version: %%version%%
  8. ------------------------------------------------------------------------------
  9. The Introjucer is part of the JUCE library - "Jules' Utility Class Extensions"
  10. Copyright 2004-13 by Raw Material Software Ltd.
  11. ==============================================================================
  12. */
  13. #ifndef %%headerGuard%%
  14. #define %%headerGuard%%
  15. //[Headers] -- You can add your own extra header files here --
  16. #include "JuceHeader.h"
  17. //[/Headers]
  18. %%includeFilesH%%
  19. //==============================================================================
  20. /**
  21. //[Comments]
  22. An auto-generated component, created by the Introjucer.
  23. Describe your class and how it works here!
  24. //[/Comments]
  25. */
  26. %%classDeclaration%%
  27. {
  28. public:
  29. //==============================================================================
  30. %%className%% (%%constructorParams%%);
  31. ~%%className%%();
  32. //==============================================================================
  33. //[UserMethods] -- You can add your own custom methods in this section.
  34. //[/UserMethods]
  35. %%publicMemberDeclarations%%
  36. private:
  37. //[UserVariables] -- You can add your own custom variables in this section.
  38. //[/UserVariables]
  39. //==============================================================================
  40. %%privateMemberDeclarations%%
  41. //==============================================================================
  42. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%className%%)
  43. };
  44. //[EndFile] You can add extra defines here...
  45. //[/EndFile]
  46. #endif // %%headerGuard%%