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
610B

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