home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / docs / lovelace / items.ads < prev    next >
Encoding:
Text File  |  1995-10-24  |  329 b   |  15 lines

  1.  
  2. with Occupants;
  3. use  Occupants;
  4.  
  5. package Items is
  6.  type Item     is new Occupant with private;
  7.  type Item_Access       is access Item'Class;
  8.  function May_I_Get(Direct_Object : access Item;
  9.                     Agent : access Occupant'Class) return Boolean;
  10.  
  11. private
  12.  type Item     is new Occupant with null record;
  13.  
  14. end Items;
  15.