From 99ea64c2c914608d3429e63845f8ed396b234dd7 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 25 May 2016 01:10:29 +1000 Subject: Buttons and accessors --- src/fltk_binding/c_fl_radio_button.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/fltk_binding/c_fl_radio_button.cpp (limited to 'src/fltk_binding/c_fl_radio_button.cpp') diff --git a/src/fltk_binding/c_fl_radio_button.cpp b/src/fltk_binding/c_fl_radio_button.cpp new file mode 100644 index 0000000..56f16c9 --- /dev/null +++ b/src/fltk_binding/c_fl_radio_button.cpp @@ -0,0 +1,16 @@ + + +#include +#include "c_fl_radio_button.h" + + +my_fl_radio_button new_fl_radio_button(int x, int y, int w, int h, char * label) { + Fl_Radio_Button *button = new Fl_Radio_Button(x, y, w, h, label); + return button; +} + + +void free_fl_radio_button(my_fl_radio_button b) { + delete reinterpret_cast(b); +} + -- cgit