Audio plugin host https://kx.studio/carla
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.

Fl_Osc_Value.H 344B

12345678910111213
  1. #pragma once
  2. #include <FL/Fl_Value_Input.H>
  3. #include "Fl_Osc_Widget.H"
  4. class Fl_Osc_Value: public Fl_Value_Input, public Fl_Osc_Widget
  5. {
  6. public:
  7. Fl_Osc_Value(int X, int Y, int W, int H, const char *label = NULL);
  8. virtual ~Fl_Osc_Value(void);
  9. //Normal Initialization
  10. void init(const char *path);
  11. };