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
1.9KB

  1. /*
  2. ==============================================================================
  3. This is an automatically generated file created by the Jucer!
  4. Creation date: %%creationTime%%
  5. Be careful when adding custom code to these files, as only the code within
  6. the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
  7. and re-saved.
  8. Jucer version: 1.12
  9. ------------------------------------------------------------------------------
  10. The Jucer is part of the JUCE library - "Jules' Utility Class Extensions"
  11. Copyright 2004-6 by Raw Material Software ltd.
  12. ==============================================================================
  13. */
  14. //[Headers] You can add your own extra header files here...
  15. //[/Headers]
  16. %%includeFilesCPP%%
  17. //[MiscUserDefs] You can add your own user definitions and misc code here...
  18. //[/MiscUserDefs]
  19. //==============================================================================
  20. %%className%%::%%className%% (%%constructorParams%%)
  21. %%initialisers%%{
  22. %%constructor%%
  23. //[Constructor] You can add your own custom stuff here..
  24. //[/Constructor]
  25. }
  26. %%className%%::~%%className%%()
  27. {
  28. //[Destructor_pre]. You can add your own custom destruction code here..
  29. //[/Destructor_pre]
  30. %%destructor%%
  31. //[Destructor]. You can add your own custom destruction code here..
  32. //[/Destructor]
  33. }
  34. //==============================================================================
  35. %%methodDefinitions%%
  36. //[MiscUserCode] You can add your own definitions of your custom methods or any other code here...
  37. //[/MiscUserCode]
  38. //==============================================================================
  39. #if 0
  40. /* -- Jucer information section --
  41. This is where the Jucer puts all of its metadata, so don't change anything in here!
  42. BEGIN_JUCER_METADATA
  43. %%metadata%%
  44. END_JUCER_METADATA
  45. */
  46. #endif
  47. %%staticMemberDefinitions%%