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.

71 lines
2.0KB

  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. //[Headers] You can add your own extra header files here...
  14. //[/Headers]
  15. %%includeFilesCPP%%
  16. //[MiscUserDefs] You can add your own user definitions and misc code here...
  17. //[/MiscUserDefs]
  18. //==============================================================================
  19. %%className%%::%%className%% (%%constructorParams%%)
  20. %%initialisers%%{
  21. %%constructor%%
  22. //[Constructor] You can add your own custom stuff here..
  23. //[/Constructor]
  24. }
  25. %%className%%::~%%className%%()
  26. {
  27. //[Destructor_pre]. You can add your own custom destruction code here..
  28. //[/Destructor_pre]
  29. %%destructor%%
  30. //[Destructor]. You can add your own custom destruction code here..
  31. //[/Destructor]
  32. }
  33. //==============================================================================
  34. %%methodDefinitions%%
  35. //[MiscUserCode] You can add your own definitions of your custom methods or any other code here...
  36. //[/MiscUserCode]
  37. //==============================================================================
  38. #if 0
  39. /* -- Introjucer information section --
  40. This is where the Introjucer stores the metadata that describe this GUI layout, so
  41. make changes in here at your peril!
  42. BEGIN_JUCER_METADATA
  43. %%metadata%%
  44. END_JUCER_METADATA
  45. */
  46. #endif
  47. %%staticMemberDefinitions%%
  48. //[EndFile] You can add extra defines here...
  49. //[/EndFile]