home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 359 b | 22 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class BAD_REDEFINE1
-
- inherit ANY redefine print_on end;
-
- creation {ANY}
- make
-
- feature {ANY}
-
- make is
- do
- end;
-
- print_on(file: STD_FILE_WRITE): INTEGER is
- do
- end;
-
- end -- BAD_REDEFINE1
-