summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_radio_round_button.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/c_fl_radio_round_button.cpp')
-rw-r--r--src/fltk_binding/c_fl_radio_round_button.cpp16
1 files changed, 0 insertions, 16 deletions
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 <FL/Fl_Radio_Round_Button.H>
-#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<Fl_Radio_Round_Button*>(b);
-}
-