From 0f28695be695a0b2e8fbfff388c61cb69cdc03af 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-check.ads | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 fltk-widgets-buttons-light-check.ads (limited to 'fltk-widgets-buttons-light-check.ads') diff --git a/fltk-widgets-buttons-light-check.ads b/fltk-widgets-buttons-light-check.ads new file mode 100644 index 0000000..77ac0e6 --- /dev/null +++ b/fltk-widgets-buttons-light-check.ads @@ -0,0 +1,25 @@ + + +package FLTK.Widgets.Buttons.Light.Check is + + + type Check_Button is new Light_Button with private; + + + function Create + (X, Y, W, H : Integer; + Label : String) + return Check_Button; + + +private + + + type Check_Button is new Light_Button with null record; + + + overriding procedure Finalize (This : in out Check_Button); + + +end FLTK.Widgets.Buttons.Light.Check; + -- cgit