Mercurial > hg > octave-nkf
diff src/symtab.h @ 3356:d2e12e998a78
[project @ 1999-11-18 06:17:06 by jwe]
author | jwe |
---|---|
date | Thu, 18 Nov 1999 06:17:08 +0000 |
parents | c4983fc7318f |
children | b80bbb43a1a9 |
line wrap: on
line diff
--- a/src/symtab.h +++ b/src/symtab.h @@ -143,6 +143,9 @@ string type_as_string (void) const; + void type (ostream& os, const string& name, bool pr_type_info, + bool quiet, bool pr_orig_txt); + string which (const string& name); void which (ostream& os, const string& name); @@ -317,6 +320,9 @@ string type_as_string (void) const { return definition->type_as_string (); } + void type (ostream& os, bool pr_type_info, bool quiet, bool pr_orig_txt) + { definition->type (os, name (), pr_type_info, quiet, pr_orig_txt); } + string which (void) { return definition->which (name ()); } void which (ostream& os) { definition->which (os, name ()); }