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.

30 lines
665B

  1. /*
  2. ==============================================================================
  3. %%filename%%
  4. Created: %%date%%
  5. Author: %%author%%
  6. ==============================================================================
  7. */
  8. #pragma once
  9. %%include_juce%%
  10. //==============================================================================
  11. /*
  12. */
  13. class %%component_class%% : public juce::Component
  14. {
  15. public:
  16. %%component_class%%();
  17. ~%%component_class%%() override;
  18. void paint (juce::Graphics&) override;
  19. void resized() override;
  20. private:
  21. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%component_class%%)
  22. };