home *** CD-ROM | disk | FTP | other *** search
/ ring.yamanashi.ac.jp/pub/pc/freem/action/ / action.zip / baku100.zip / baku100 / Kernel / Util / BinWriter.tonyu < prev    next >
Text File  |  2001-07-31  |  336b  |  24 lines

  1. extends Object;
  2.  
  3. native _n_init;
  4. constructor BinWriter() {
  5.    _body=_n_init();
  6. }
  7.  
  8. native _n_free;
  9. destructor free() {
  10.    return _n_free (_body);
  11. }
  12.  
  13. native _n_writeInt;
  14. function writeInt(i) {
  15.    return _n_writeInt (_body,i);
  16. }
  17.  
  18. native _n_toB64;
  19. function toB64() {
  20.    return _n_toB64 (_body);
  21. }
  22.  
  23. function close(){
  24. }