-- File: DBShow.mesa
-- Contents: Procs to print out entities and tuples
-- Last edited by:
--  Rick Cattell on November 4, 1983 11:29 am


DIRECTORY Rope;

DBShow: DEFINITIONS =

BEGIN 

Show: PUBLIC PROC [huh: REF ANY --Entity or Relship--] RETURNS [Rope.ROPE];
 -- Displays entity, relship, domain, attribute, or relation

ShowAll: PUBLIC PROC [huh: REF ANY] RETURNS [Rope.ROPE];
  -- Displays an entity and its referencing relships

END.