summaryrefslogtreecommitdiff
path: root/fltk-widgets-buttons-light.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
commit0f28695be695a0b2e8fbfff388c61cb69cdc03af (patch)
tree9b9de86c8c308f9fdac949620d4deec6d21a3710 /fltk-widgets-buttons-light.ads
parentcbe99e357fff28fb6aa3db7bec03756385c8928c (diff)
The Great Package Naming Style Change(tm)
Diffstat (limited to 'fltk-widgets-buttons-light.ads')
-rw-r--r--fltk-widgets-buttons-light.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/fltk-widgets-buttons-light.ads b/fltk-widgets-buttons-light.ads
new file mode 100644
index 0000000..d0c733d
--- /dev/null
+++ b/fltk-widgets-buttons-light.ads
@@ -0,0 +1,25 @@
+
+
+package FLTK.Widgets.Buttons.Light is
+
+
+ type Light_Button is new Button with private;
+
+
+ function Create
+ (X, Y, W, H : Integer;
+ Label : String)
+ return Light_Button;
+
+
+private
+
+
+ type Light_Button is new Button with null record;
+
+
+ overriding procedure Finalize (This : in out Light_Button);
+
+
+end FLTK.Widgets.Buttons.Light;
+