summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-button-light-round-radio.ads
blob: c0e4f382d5d4a7dcea6b1821d8aee7e8b6b1fe4f (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


package FLTK.Widget.Button.Light.Round.Radio is


    type Radio_Type is new Round_Type with private;


    function Create
           (X, Y, W, H : Integer;
            Label      : String)
        return Radio_Type;


private


    type Radio_Type is new Round_Type with null record;


    overriding procedure Finalize (This : in out Radio_Type);


end FLTK.Widget.Button.Light.Round.Radio;