Mercurial > hg > octave-nkf
diff src/oct-fstrm.h @ 3544:71bd2d124119
[project @ 2000-02-02 21:02:31 by jwe]
author | jwe |
---|---|
date | Wed, 02 Feb 2000 21:02:41 +0000 |
parents | b80bbb43a1a9 |
children | 6dfdded73a7e |
line wrap: on
line diff
--- a/src/oct-fstrm.h +++ b/src/oct-fstrm.h @@ -33,17 +33,18 @@ public: octave_fstream (const std::string& nm_arg, - ios::openmode md = ios::in|ios::out, + std::ios::openmode md = std::ios::in|std::ios::out, oct_mach_info::float_format flt_fmt = oct_mach_info::native); static octave_stream - create (const std::string& nm_arg, ios::openmode md = ios::in|ios::out, + create (const std::string& nm_arg, + std::ios::openmode md = std::ios::in|std::ios::out, oct_mach_info::float_format flt_fmt = oct_mach_info::native); // Position a stream at OFFSET relative to ORIGIN. - int seek (streamoff offset, ios::seek_dir origin); + int seek (streamoff offset, std::ios::seek_dir origin); // Return current stream position.