Interface to Employee IO Child Package

Go to Package Implementation

PACKAGE Employees.IO IS
------------------------------------------------------------------
--| Child Package for Employee Input/Output
--| Author: Michael B. Feldman, The George Washington University
--| Last Modified: July 1995
------------------------------------------------------------------

  PROCEDURE Get (Item: OUT Employee);
  -- reads an Employee record from the terminal
  -- Pre: none
  -- Post: Item contains a record of type Employee

  PROCEDURE Put (Item: IN Employee);
  -- displays an Employee record on the screen
  -- Pre: Item is defined
  -- Post: displays the fields of Item on the screen

END Employees.IO;