home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_std / bit_string.e < prev    next >
Text File  |  1999-06-05  |  1KB  |  49 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_STRING
  13. --
  14. -- Very large Bit sequences handling.
  15. -- Also consider class BIT_N for small Bit sequences.
  16. --
  17. -- NOTE :  This class is not yet implemeted (work in progress).
  18. --         This will be done for release -0.77.
  19. --
  20.  
  21. obsolete "This class is not yet implemeted (work in progress).%N%
  22.          %This will be done for release -0.77."
  23.  
  24. creation make
  25.  
  26. feature {NONE}
  27.  
  28.    make(c: INTEGER) is
  29.       obsolete "Not Yet Implemented."
  30.       do
  31.          not_yet_implemented;
  32.       end;
  33.  
  34. feature
  35.  
  36.    count: INTEGER is
  37.       obsolete "Not Yet Implemented."
  38.       do
  39.          not_yet_implemented;
  40.       end;
  41.  
  42.    put_1(idx: INTEGER) is
  43.       obsolete "Not Yet Implemented."
  44.       do
  45.          not_yet_implemented;
  46.       end;
  47.  
  48. end -- BIT_STRING
  49.