summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-button-light-check.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/fltk-widget-button-light-check.ads')
-rw-r--r--src/fltk_binding/fltk-widget-button-light-check.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/fltk_binding/fltk-widget-button-light-check.ads b/src/fltk_binding/fltk-widget-button-light-check.ads
new file mode 100644
index 0000000..14eab60
--- /dev/null
+++ b/src/fltk_binding/fltk-widget-button-light-check.ads
@@ -0,0 +1,25 @@
+
+
+package FLTK.Widget.Button.Light.Check is
+
+
+ type Check_Type is new Light_Type with private;
+
+
+ function Create
+ (X, Y, W, H : Integer;
+ Label : String)
+ return Check_Type;
+
+
+private
+
+
+ type Check_Type is new Light_Type with null record;
+
+
+ overriding procedure Finalize (This : in out Check_Type);
+
+
+end FLTK.Widget.Button.Light.Check;
+