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

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. expanded class EXPANDED1
  5.    --
  6.    -- For use of test_expanded*.e
  7.    --
  8.    
  9. feature {ANY}
  10.    
  11.    x: INTEGER;
  12.    
  13.    set_x(value: INTEGER) is
  14.       do
  15.      x := value;
  16.       end;
  17.    
  18. end -- EXPANDED1
  19.