home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_std / bit_n_ref.e < prev    next >
Text File  |  1999-06-05  |  1KB  |  41 lines

  1. -- This file is  free  software, which  comes  along  with  SmallEiffel. This
  2. -- software  is  distributed  in the hope that it will be useful, but WITHOUT 
  3. -- ANY  WARRANTY;  without  even  the  implied warranty of MERCHANTABILITY or
  4. -- FITNESS  FOR A PARTICULAR PURPOSE. You can modify it as you want, provided
  5. -- this header is kept unaltered, and a notification of the changes is added.
  6. -- You  are  allowed  to  redistribute  it and sell it, alone or as a part of 
  7. -- another product.
  8. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  9. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  10. --                       http://SmallEiffel.loria.fr
  11. --
  12. class BIT_N_REF
  13. --
  14. -- For implementation of class BIT_N (see BIT_N first).
  15. -- Note : creation of BIT_N_REF object is done automatically 
  16. -- by the compiler when assignment is done from BIT_N to a valid
  17. -- reference class (BIT_N_REF or ANY for example). Do not use the
  18. -- the standard Eiffel allocator : !!
  19. --
  20.  
  21. inherit 
  22.    ANY
  23.       redefine out_in_tagged_out_memory, fill_tagged_out_memory
  24.       end;
  25.  
  26. feature
  27.  
  28.    out_in_tagged_out_memory, fill_tagged_out_memory is
  29.       do
  30.          bit_n.fill_tagged_out_memory;
  31.       end;
  32.  
  33. feature {NONE}
  34.  
  35.    bit_n: BIT_N is
  36.       external "SmallEiffel"
  37.       end;
  38.  
  39. end -- BIT_N_REF
  40.  
  41.