summaryrefslogtreecommitdiff
path: root/src/fltk-images-bitmaps.ads
blob: ce688f1c907efe388b4f7f2472d96de0c569f35d (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
31


package FLTK.Images.Bitmaps is


    type Bitmap is new Image with private;




    function Copy
           (This          : in Bitmap;
            Width, Height : in Natural)
        return Bitmap;

    function Copy
           (This : in Bitmap)
        return Bitmap;


private


    type Bitmap is new Image with null record;

    overriding procedure Finalize
           (This : in out Bitmap);


end FLTK.Images.Bitmaps;