blob: e80ab88040168295e7136739d220fbf4222060f1 (
plain)
1
2
3
4
5
6
7
8
9
|
package Root is
type Buffer_Type is array (Positive range <>) of Natural;
type Root_Type (First : Natural) is abstract tagged record
Buffer_Root : Buffer_Type (1 .. First);
end record;
end Root;
|