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.

67 lines
2.2KB

  1. /*
  2. ==============================================================================
  3. This is an automatically generated file created by the Jucer!
  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 for JUCE version: %%juceVersion%%
  8. ------------------------------------------------------------------------------
  9. JUCE and the Jucer are copyright 2004-10 by Raw Material Software ltd.
  10. ==============================================================================
  11. */
  12. #ifndef %%headerGuard%%
  13. #define %%headerGuard%%
  14. //[Headers] -- You can add your own extra header files here --
  15. %%defaultJuceInclude%%
  16. //[/Headers]
  17. %%includeFilesH%%
  18. //==============================================================================
  19. /**
  20. //[Comments]
  21. An auto-generated component, created by the Jucer.
  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. //==============================================================================
  36. juce_UseDebuggingNewOperator
  37. private:
  38. //[UserVariables] -- You can add your own custom variables in this section.
  39. //[/UserVariables]
  40. //==============================================================================
  41. %%privateMemberDeclarations%%
  42. //==============================================================================
  43. // (prevent copy constructor and operator= being generated..)
  44. %%className%% (const %%className%%&);
  45. %%className%%& operator= (const %%className%%&);
  46. };
  47. #endif // %%headerGuard%%