summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-inputs-int.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-09 13:52:31 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-09 13:52:31 +1000
commitd3b6a05cf266af9d426e9756a1b2deafdbca35fe (patch)
tree339633239c779089af2794aef5bb0c626743ad5d /src/fltk-widgets-inputs-int.ads
parente9207bcaeee8892d617013035814552aed9b3ff9 (diff)
Changed Integer_Input package name
Diffstat (limited to 'src/fltk-widgets-inputs-int.ads')
-rw-r--r--src/fltk-widgets-inputs-int.ads35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/fltk-widgets-inputs-int.ads b/src/fltk-widgets-inputs-int.ads
deleted file mode 100644
index e8d1184..0000000
--- a/src/fltk-widgets-inputs-int.ads
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-package FLTK.Widgets.Inputs.Int is
-
-
- type Integer_Input is new Input with private;
-
-
- function Create
- (X, Y, W, H : in Integer;
- Text : in String)
- return Integer_Input;
-
-
- function Get_Value
- (This : in Integer_Input)
- return Integer;
-
-
- procedure Draw
- (This : in out Integer_Input);
-
-
-private
-
-
- type Integer_Input is new Input with null record;
-
-
- overriding procedure Finalize
- (This : in out Integer_Input);
-
-
-end FLTK.Widgets.Inputs.Int;
-