ifstream.sa
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

  1. class IFSTREAM < $ISTREAM is
  2.    include FILE open_for_read -> FILE_open_for_read;
  3.    get : CHAR is
  4.       return get_char;
  5.    end;
  6.    const eof_char : CHAR := '377';
  7.    open_for_read ( file_name : STR ) : SAME is
  8.       file : SAME := FILE_open_for_read( file_name );
  9.       if ( void(file.fp) ) then
  10.  return void
  11.       end;
  12.       return file;
  13.    end;
  14. end;