summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widgets-buttons-radio.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-26 00:38:43 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-26 00:38:43 +1000
commit524edbb4463b66d61e92c92a7020d9d09b82e744 (patch)
treeb2ec49fdcc88a34c4c2f80ead9548358a382da77 /src/fltk_binding/fltk-widgets-buttons-radio.ads
parented6fcd873aad9e574de0b2c6311d1c4404cb76dc (diff)
The Great Package Naming Style Change(tm)
Diffstat (limited to 'src/fltk_binding/fltk-widgets-buttons-radio.ads')
-rw-r--r--src/fltk_binding/fltk-widgets-buttons-radio.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/fltk_binding/fltk-widgets-buttons-radio.ads b/src/fltk_binding/fltk-widgets-buttons-radio.ads
new file mode 100644
index 0000000..3681e05
--- /dev/null
+++ b/src/fltk_binding/fltk-widgets-buttons-radio.ads
@@ -0,0 +1,25 @@
+
+
+package FLTK.Widgets.Buttons.Radio is
+
+
+ type Radio_Button is new Button with private;
+
+
+ function Create
+ (X, Y, W, H : Integer;
+ Label : String)
+ return Radio_Button;
+
+
+private
+
+
+ type Radio_Button is new Button with null record;
+
+
+ overriding procedure Finalize (This : in out Radio_Button);
+
+
+end FLTK.Widgets.Buttons.Radio;
+