Annotation of OpenXM_contrib/PHC/Ada/Math_Lib/Numbers/abstract_ring_io.ads, Revision 1.1
1.1 ! maekawa 1: with text_io; use text_io;
! 2: with Abstract_Ring;
! 3:
! 4: generic
! 5:
! 6: with package Ring is new Abstract_Ring(<>);
! 7: with procedure get ( file : in file_type; n : in out Ring.number );
! 8: with procedure put ( file : in file_type; n : in Ring.number );
! 9: with procedure put ( file : in file_type;
! 10: n : in Ring.number; dp : in natural );
! 11:
! 12: package Abstract_Ring_io is end;
! 13:
! 14: -- DESCRIPTION :
! 15: -- Abstract specification of the input/output for any ring of numbers.
! 16: -- The second put operation allows to specify the number of decimal
! 17: -- places that have to be displayed.
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>