mirror of
https://github.com/AdaCore/cuda.git
synced 2026-02-12 13:05:54 -08:00
11 lines
229 B
Ada
11 lines
229 B
Ada
generic
|
|
type T is private;
|
|
package CUDA_Wrapper is
|
|
|
|
type T_Access is access all T;
|
|
|
|
type Array_T is array (Natural range <>) of aliased T;
|
|
type Array_Access is access all Array_T;
|
|
|
|
end CUDA_Wrapper;
|