diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-05-26 00:38:43 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-05-26 00:38:43 +1000 |
commit | 0f28695be695a0b2e8fbfff388c61cb69cdc03af (patch) | |
tree | 9b9de86c8c308f9fdac949620d4deec6d21a3710 /fltk-widgets-buttons-light-round.ads | |
parent | cbe99e357fff28fb6aa3db7bec03756385c8928c (diff) |
The Great Package Naming Style Change(tm)
Diffstat (limited to 'fltk-widgets-buttons-light-round.ads')
-rw-r--r-- | fltk-widgets-buttons-light-round.ads | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/fltk-widgets-buttons-light-round.ads b/fltk-widgets-buttons-light-round.ads new file mode 100644 index 0000000..18d72d0 --- /dev/null +++ b/fltk-widgets-buttons-light-round.ads @@ -0,0 +1,25 @@ + + +package FLTK.Widgets.Buttons.Light.Round is + + + type Round_Button is new Light_Button with private; + + + function Create + (X, Y, W, H : Integer; + Label : String) + return Round_Button; + + +private + + + type Round_Button is new Light_Button with null record; + + + overriding procedure Finalize (This : in out Round_Button); + + +end FLTK.Widgets.Buttons.Light.Round; + |