Mercurial > hg > octave-lyh
diff src/oct-stream.h @ 3341:14cfc9475fe4
[project @ 1999-11-05 08:11:58 by jwe]
author | jwe |
---|---|
date | Fri, 05 Nov 1999 08:11:59 +0000 |
parents | 585a8809fd9b |
children | 1bb6e519a4a2 |
line wrap: on
line diff
--- a/src/oct-stream.h +++ b/src/oct-stream.h @@ -495,11 +495,13 @@ static octave_value insert (const octave_stream& os); - static octave_stream lookup (int fid); - static octave_stream lookup (const octave_value& fid); + static octave_stream lookup (int fid, const string& who = string ()); + static octave_stream lookup (const octave_value& fid, + const string& who = string ()); - static int remove (int fid); - static int remove (const octave_value& fid); + static int remove (int fid, const string& who = string ()); + static int remove (const octave_value& fid, + const string& who = string ()); static void clear (void); @@ -522,11 +524,12 @@ octave_value do_insert (const octave_stream& os); - octave_stream do_lookup (int fid) const; - octave_stream do_lookup (const octave_value& fid) const; + octave_stream do_lookup (int fid, const string& who = string ()) const; + octave_stream do_lookup (const octave_value& fid, + const string& who = string ()) const; - int do_remove (int fid); - int do_remove (const octave_value& fid); + int do_remove (int fid, const string& who = string ()); + int do_remove (const octave_value& fid, const string& who = string ()); void do_clear (void);