home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / aux_generic7xct.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  544 b   |  38 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. deferred class AUX_GENERIC7XCT[G]
  5.  
  6. feature
  7.  
  8.     start is
  9.         deferred
  10.         end;
  11.  
  12.     after: BOOLEAN is
  13.         deferred
  14.         end;
  15.  
  16.     forth is
  17.         deferred
  18.         end;
  19.  
  20.     item: G is
  21.         deferred
  22.         end;
  23.  
  24.     empty: BOOLEAN is
  25.         deferred
  26.         end;
  27.  
  28.     cursor: CURSOR is
  29.         deferred
  30.         end;
  31.  
  32.     go_to (c: CURSOR) is
  33.         deferred
  34.         end;
  35.  
  36. end  -- AUX_GENERIC7XCT
  37.  
  38.