From 524edbb4463b66d61e92c92a7020d9d09b82e744 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 26 May 2016 00:38:43 +1000 Subject: The Great Package Naming Style Change(tm) --- .../fltk-widgets-buttons-light-round-radio.ads | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/fltk_binding/fltk-widgets-buttons-light-round-radio.ads (limited to 'src/fltk_binding/fltk-widgets-buttons-light-round-radio.ads') diff --git a/src/fltk_binding/fltk-widgets-buttons-light-round-radio.ads b/src/fltk_binding/fltk-widgets-buttons-light-round-radio.ads new file mode 100644 index 0000000..666f944 --- /dev/null +++ b/src/fltk_binding/fltk-widgets-buttons-light-round-radio.ads @@ -0,0 +1,25 @@ + + +package FLTK.Widgets.Buttons.Light.Round.Radio is + + + type Radio_Round_Button is new Round_Button with private; + + + function Create + (X, Y, W, H : Integer; + Label : String) + return Radio_Round_Button; + + +private + + + type Radio_Round_Button is new Round_Button with null record; + + + overriding procedure Finalize (This : in out Radio_Round_Button); + + +end FLTK.Widgets.Buttons.Light.Round.Radio; + -- cgit