next up previous contents index
Weiter: A.2.8 Das Paket Hinauf: A.2 Das Paket Zurück: A.2.6 Das Paket

A.2.7 Das Paket Ada.Storage_IO


with Ada.IO_Exceptions;
with System.Storage_Elements;
generic
type Element_Type is private;
package Ada.Storage_IO is

pragma Preelaborate(Storage_IO);

Buffer_Size : constant System.Storage_Elements.Storage_Count :=
implementation-defined;
subtype Buffer_Type is
System.Storage_Elements.Storage_Array(1..Buffer_Size);

-Inputandoutputoperations

procedure Read (Buffer : in Buffer_Type; Item : out Element_Type);

procedure Write(Buffer : out Buffer_Type; Item : in Element_Type);

-Exceptions

Data_Error : exception renames IO_Exceptions.Data_Error;
end Ada.Storage_IO;



Johann Blieberger
Wed Feb 11 09:58:52 MET 1998