From f28f819c721fa5a317e23b3cc1eefb938115b47a Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 5 Oct 2016 15:44:17 +1100 Subject: Added logo, made find/replace/about windows attention grabbing --- fltk-images-rgb-png.ads | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 fltk-images-rgb-png.ads (limited to 'fltk-images-rgb-png.ads') diff --git a/fltk-images-rgb-png.ads b/fltk-images-rgb-png.ads new file mode 100644 index 0000000..0b44cb0 --- /dev/null +++ b/fltk-images-rgb-png.ads @@ -0,0 +1,25 @@ + + +package FLTK.Images.RGB.PNG is + + + type PNG_Image is new RGB_Image with private; + + + function Create + (Filename : in String) + return PNG_Image; + + +private + + + type PNG_Image is new RGB_Image with null record; + + + overriding procedure Finalize + (This : in out PNG_Image); + + +end FLTK.Images.RGB.PNG; + -- cgit