Mercurial > hg > octave-lyh
diff src/ov.h @ 7761:5adeea5de26c
symbol table reporting functions
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 06 May 2008 05:51:17 -0400 |
parents | 39930366b709 |
children | 82be108cc558 |
line wrap: on
line diff
--- a/src/ov.h +++ b/src/ov.h @@ -740,6 +740,8 @@ octave_function *function_value (bool silent = false); + const octave_function *function_value (bool silent = false) const; + octave_user_function *user_function_value (bool silent = false); octave_user_script *user_script_value (bool silent = false); @@ -890,6 +892,8 @@ bool islocked (void) const { return rep->islocked (); } + void dump (std::ostream& os) const { rep->dump (os); } + #define MAPPER_FORWARD(F) \ octave_value F (void) const { return rep->F (); }