home *** CD-ROM | disk | FTP | other *** search
/ ring.yamanashi.ac.jp/pub/pc/freem/action/ / action.zip / henkyaku1.0.exe / henkyaku / Program / Kernel / Util / BinReader.tonyu < prev    next >
Text File  |  2002-06-02  |  263b  |  19 lines

  1. extends Reader;
  2.  
  3. native _n_init;
  4. constructor BinReader(s) {
  5.    _body=_n_init(s);
  6. }
  7.  
  8. native _n_free;
  9. destructor free() {
  10.    return _n_free (_body);
  11. }
  12.  
  13. native _n_readInt;
  14. function readInt(i) {
  15.    return _n_readInt (_body,i);
  16. }
  17.  
  18. function close(){
  19. }