summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-images.ads
blob: 88d76582195c7a1b30368f0d85dc68afb6479436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30


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;