home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 375 b | 27 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class AUX_GENERIC5[E]
-
- creation make
-
- feature {}
-
- arg: E;
-
- make(e: E) is
- do
- arg := e;
- end;
-
- feature
-
- bizarre is
- local
- tmp: AUX_GENERIC5[E]
- do
- tmp := clone(Current);
- end;
-
- end -- AUX_GENERIC5
-