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.

36 lines
1.0KB

  1. /*
  2. ==============================================================================
  3. This file was auto-generated!
  4. ==============================================================================
  5. */
  6. #pragma once
  7. %%include_juce%%
  8. //==============================================================================
  9. /*
  10. This component lives inside our window, and this is where you should put all
  11. your controls and content.
  12. */
  13. class %%content_component_class%% : public Component
  14. {
  15. public:
  16. //==============================================================================
  17. %%content_component_class%%();
  18. ~%%content_component_class%%();
  19. //==============================================================================
  20. void paint (Graphics&) override;
  21. void resized() override;
  22. private:
  23. //==============================================================================
  24. // Your private member variables go here...
  25. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)
  26. };