diff options
Diffstat (limited to 'src/fltk-widgets-valuators-counters-simple.ads')
-rw-r--r-- | src/fltk-widgets-valuators-counters-simple.ads | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/src/fltk-widgets-valuators-counters-simple.ads b/src/fltk-widgets-valuators-counters-simple.ads deleted file mode 100644 index 9ff57fe..0000000 --- a/src/fltk-widgets-valuators-counters-simple.ads +++ /dev/null @@ -1,52 +0,0 @@ - - --- Programmed by Jedidiah Barber --- Released into the public domain - - -package FLTK.Widgets.Valuators.Counters.Simple is - - - type Simple_Counter is new Counter with private; - - type Simple_Counter_Reference (Data : not null access Simple_Counter'Class) is - limited null record with Implicit_Dereference => Data; - - - - - package Forge is - - function Create - (X, Y, W, H : in Integer; - Text : in String := "") - return Simple_Counter; - - end Forge; - - -private - - - type Simple_Counter is new Counter with null record; - - overriding procedure Initialize - (This : in out Simple_Counter); - - overriding procedure Finalize - (This : in out Simple_Counter); - - procedure Extra_Init - (This : in out Simple_Counter; - X, Y, W, H : in Integer; - Text : in String) - with Inline; - - procedure Extra_Final - (This : in out Simple_Counter) - with Inline; - - -end FLTK.Widgets.Valuators.Counters.Simple; - - |