aboutsummaryrefslogtreecommitdiff
path: root/src/fltk-widgets-valuators-counters-simple.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-valuators-counters-simple.ads')
-rw-r--r--src/fltk-widgets-valuators-counters-simple.ads51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/fltk-widgets-valuators-counters-simple.ads b/src/fltk-widgets-valuators-counters-simple.ads
deleted file mode 100644
index ca82a99..0000000
--- a/src/fltk-widgets-valuators-counters-simple.ads
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-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;
-
-
-
-
- procedure Draw
- (This : in out Simple_Counter);
-
- function Handle
- (This : in out Simple_Counter;
- Event : in Event_Kind)
- return Event_Outcome;
-
-
-private
-
-
- type Simple_Counter is new Counter with null record;
-
- overriding procedure Finalize
- (This : in out Simple_Counter);
-
-
-
-
- pragma Inline (Draw);
- pragma Inline (Handle);
-
-
-end FLTK.Widgets.Valuators.Counters.Simple;
-