home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 725 b | 33 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class BIT_N_REF
- --
- -- For implementation of class BIT_N (see BIT_N first).
- -- Note : creation of BIT_N_REF object is done automatically
- -- by the compiler when assignment is done from BIT_N to a valid
- -- reference class (BIT_N_REF or ANY for example). Do not use the
- -- the standard Eiffel allocator : !!
- --
- inherit
- ANY
- redefine print_on
- end;
-
- feature {NONE}
-
- bit_n: BIT_N is
- external "CSE"
- end;
-
- feature
-
- print_on(file: STD_FILE_WRITE) is
- do
- tagged_out_memory.clear;
- bit_n.fill_tagged_out_memory;
- file.put_string(tagged_out_memory);
- end;
-
- end
-