From ecdb8876ea6bdd333386aa7014cc5a8e0abe4c91 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 28 Apr 2017 18:21:25 +1000 Subject: Moved fltk binding to separate repo --- src/fltk_binding/c_fl_radio_round_button.cpp | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/fltk_binding/c_fl_radio_round_button.cpp (limited to 'src/fltk_binding/c_fl_radio_round_button.cpp') diff --git a/src/fltk_binding/c_fl_radio_round_button.cpp b/src/fltk_binding/c_fl_radio_round_button.cpp deleted file mode 100644 index 9e94244..0000000 --- a/src/fltk_binding/c_fl_radio_round_button.cpp +++ /dev/null @@ -1,16 +0,0 @@ - - -#include -#include "c_fl_radio_round_button.h" - - -RADIOROUNDBUTTON new_fl_radio_round_button(int x, int y, int w, int h, char* label) { - Fl_Radio_Round_Button *b = new Fl_Radio_Round_Button(x, y, w, h, label); - return b; -} - - -void free_fl_radio_round_button(RADIOROUNDBUTTON b) { - delete reinterpret_cast(b); -} - -- cgit