blob: d9ce5b11c76dd4024cd854a1d8b983eeb8ce6f2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
-- Programmed by Jedidiah Barber
-- Released into the public domain
package FLTK.Devices is
type Device is new Wrapper with private;
type Device_Reference (Data : not null access Device'Class) is
limited null record with Implicit_Dereference => Data;
private
type Device is new Wrapper with null record;
end FLTK.Devices;
|