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.

34 lines
648B

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