--============================================================================= --| --| PACKAGE NAME: other_io --| --| PURPOSE: To provide instantiated I/O packages for various units. --| --| PROGRAMMER: Lionel Deimel DATE WRITTEN: 5/20/90 --| DATE OF LAST REVISION: 8/1/90 VERSION: 1.1 --| --| NOTES: This package required by packages numbers.search and timekeeper. --| --============================================================================= WITH text_io; PACKAGE other_io IS PACKAGE duration_io IS NEW text_io.fixed_io (duration); PACKAGE natural_io IS NEW text_io.integer_io (natural); PACKAGE integer_io IS NEW text_io.integer_io (integer); END other_io;