comparison src/ov.h @ 4233:ccfdb55c8156

[project @ 2002-12-20 22:43:54 by jwe]
author jwe
date Fri, 20 Dec 2002 22:43:55 +0000
parents 23d06c9e1edd
children fc9a075d10fb
comparison
equal deleted inserted replaced
4232:b032ebd54586 4233:ccfdb55c8156
155 155
156 enum magic_colon { magic_colon_t }; 156 enum magic_colon { magic_colon_t };
157 enum all_va_args { all_va_args_t }; 157 enum all_va_args { all_va_args_t };
158 158
159 octave_value (void); 159 octave_value (void);
160 octave_value (int i);
160 octave_value (double d); 161 octave_value (double d);
161 octave_value (const Cell& m); 162 octave_value (const Cell& m);
162 octave_value (const Matrix& m); 163 octave_value (const Matrix& m);
163 octave_value (const DiagMatrix& d); 164 octave_value (const DiagMatrix& d);
164 octave_value (const RowVector& v); 165 octave_value (const RowVector& v);
259 const std::list<octave_value_list>& idx, 260 const std::list<octave_value_list>& idx,
260 int nargout); 261 int nargout);
261 262
262 octave_value next_subsref (const std::string type, const 263 octave_value next_subsref (const std::string type, const
263 std::list<octave_value_list>& idx, 264 std::list<octave_value_list>& idx,
264 int skip = 1); 265 size_t skip = 1);
265 266
266 virtual octave_value do_index_op (const octave_value_list& idx, 267 virtual octave_value do_index_op (const octave_value_list& idx,
267 int resize_ok) 268 int resize_ok)
268 { return rep->do_index_op (idx, resize_ok); } 269 { return rep->do_index_op (idx, resize_ok); }
269 270