1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- ADA.TAGS.GENERIC_DISPATCHING_CONSTRUCTOR --
9 -- This specification is derived from the Ada Reference Manual for use with --
10 -- GNAT. In accordance with the copyright of that document, you can freely --
11 -- copy and modify this specification, provided that if you redistribute a --
12 -- modified version, any changes that you have made are clearly indicated. --
14 ------------------------------------------------------------------------------
16 pragma Warnings
(Off
);
17 -- Turn off categorization warnings
20 type T
(<>) is abstract tagged limited private;
21 type Parameters
(<>) is limited private;
22 with function Constructor
(Params
: not null access Parameters
) return T
25 function Ada
.Tags
.Generic_Dispatching_Constructor
27 Params
: not null access Parameters
) return T
'Class;
28 pragma Preelaborate
(Generic_Dispatching_Constructor
);
29 pragma Import
(Intrinsic
, Generic_Dispatching_Constructor
);