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.

33 lines
886B

  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 CONTENTCOMPCLASS : public Component
  14. {
  15. public:
  16. //==============================================================================
  17. CONTENTCOMPCLASS();
  18. ~CONTENTCOMPCLASS();
  19. void paint (Graphics&) override;
  20. void resized() override;
  21. private:
  22. //==============================================================================
  23. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (CONTENTCOMPCLASS)
  24. };