DISTRHO Plugin Framework
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.

13 lines
363B

  1. // Copyright Jean Pierre Cimalando 2018.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #include "Widget.hpp"
  6. class DemoWidgetBanner : public Widget {
  7. public:
  8. explicit DemoWidgetBanner(Widget *group);
  9. void onDisplay() override;
  10. };