Mercurial > hg > octave-nkf
comparison src/pt-fvc.h @ 2859:00c0cd0f2ee7
[project @ 1997-03-31 19:02:32 by jwe]
author | jwe |
---|---|
date | Mon, 31 Mar 1997 19:02:37 +0000 |
parents | 8b262e771614 |
children | 4309724baab6 |
comparison
equal
deleted
inserted
replaced
2858:a8f735f0dd71 | 2859:00c0cd0f2ee7 |
---|---|
86 void mark_as_formal_parameter (void); | 86 void mark_as_formal_parameter (void); |
87 | 87 |
88 void mark_for_possible_ans_assign (void) | 88 void mark_for_possible_ans_assign (void) |
89 { maybe_do_ans_assign = true; } | 89 { maybe_do_ans_assign = true; } |
90 | 90 |
91 octave_value eval (bool print); | 91 octave_value eval (bool print = false); |
92 | 92 |
93 octave_value_list eval (bool print, int nargout, | 93 octave_value_list eval (bool print, int nargout, |
94 const octave_value_list& args); | 94 const octave_value_list& args); |
95 | 95 |
96 void eval_undefined_error (void); | 96 void eval_undefined_error (void); |
162 id->mark_for_possible_ans_assign (); | 162 id->mark_for_possible_ans_assign (); |
163 } | 163 } |
164 | 164 |
165 string name (void) const; | 165 string name (void) const; |
166 | 166 |
167 octave_value eval (bool print); | 167 octave_value eval (bool print = false); |
168 | 168 |
169 octave_value_list eval (bool print, int nargout, | 169 octave_value_list eval (bool print, int nargout, |
170 const octave_value_list& args); | 170 const octave_value_list& args); |
171 | 171 |
172 octave_value value (void) const; | 172 octave_value value (void) const; |
219 // int is_builtin (void) const; | 219 // int is_builtin (void) const; |
220 | 220 |
221 bool is_mapper_function (void) const | 221 bool is_mapper_function (void) const |
222 { return is_mapper; } | 222 { return is_mapper; } |
223 | 223 |
224 octave_value eval (bool print); | 224 octave_value eval (bool print = false); |
225 | 225 |
226 octave_value_list eval (bool print, int nargout, const octave_value_list& args); | 226 octave_value_list eval (bool print, int nargout, const octave_value_list& args); |
227 | 227 |
228 string name (void) const | 228 string name (void) const |
229 { return my_name; } | 229 { return my_name; } |