comparison src/ov-base.h @ 5781:faafc2d98b8d

[project @ 2006-05-02 19:40:19 by jwe]
author jwe
date Tue, 02 May 2006 19:40:21 +0000
parents ce79d238f142
children 6b9cec830d72
comparison
equal deleted inserted replaced
5780:cbf717bf8150 5781:faafc2d98b8d
89 t_id = octave_value_typeinfo::register_type (t::t_name, \ 89 t_id = octave_value_typeinfo::register_type (t::t_name, \
90 t::c_name, \ 90 t::c_name, \
91 octave_value (new t ())); \ 91 octave_value (new t ())); \
92 } 92 }
93 93
94 // Should we print a warning when converting `[97, 98, 99, "123"]'
95 // to a character string?
96 extern bool Vwarn_num_to_str;
97
98 // If TRUE, print a warning when a matrix is resized by an indexed
99 // assignment with indices outside the current bounds.
100 extern bool Vwarn_resize_on_range_error;
101
102 // A base value type, so that derived types only have to redefine what 94 // A base value type, so that derived types only have to redefine what
103 // they need (if they are derived from octave_base_value instead of 95 // they need (if they are derived from octave_base_value instead of
104 // octave_value). 96 // octave_value).
105 97
106 class 98 class