summaryrefslogtreecommitdiff
path: root/fltk-images.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-04-27 10:40:48 +1000
committerJed Barber <jjbarber@y7mail.com>2017-04-27 10:40:48 +1000
commit0d842f0423ba0754fb3675c7468397a8da5f6e1b (patch)
treed5da172bc7af2f7f48a3415eceac67ed67542787 /fltk-images.ads
parent5d88963cd203f30b79433e34e5c89bfcf8abfe60 (diff)
Organising source
Diffstat (limited to 'fltk-images.ads')
-rw-r--r--fltk-images.ads40
1 files changed, 0 insertions, 40 deletions
diff --git a/fltk-images.ads b/fltk-images.ads
deleted file mode 100644
index f005443..0000000
--- a/fltk-images.ads
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-package FLTK.Images is
-
-
- type Image is new Wrapper with private;
-
-
- function Create
- (Width, Height, Depth : in Natural)
- return Image;
-
-
- function Get_W
- (This : in Image)
- return Natural;
-
-
- function Get_H
- (This : in Image)
- return Natural;
-
-
- function Get_D
- (This : in Image)
- return Natural;
-
-
-private
-
-
- type Image is new Wrapper with null record;
-
-
- overriding procedure Finalize
- (This : in out Image);
-
-
-end FLTK.Images;
-