comparison src/ov-cell.h @ 4457:d7d9ca19960a

[project @ 2003-07-11 03:05:38 by jwe]
author jwe
date Fri, 11 Jul 2003 03:05:39 +0000
parents f3c21a1d1c62
children cba347c642e2
comparison
equal deleted inserted replaced
4456:b0aff7648c2d 4457:d7d9ca19960a
96 96
97 Cell cell_value (void) const { return matrix; } 97 Cell cell_value (void) const { return matrix; }
98 98
99 octave_value_list list_value (void) const; 99 octave_value_list list_value (void) const;
100 100
101 octave_value convert_to_str_internal (bool pad = false) const 101 octave_value convert_to_str_internal (bool pad, bool force) const
102 { return all_strings (pad); } 102 { return all_strings (pad, force); }
103 103
104 string_vector all_strings (bool pad = false) const; 104 string_vector all_strings (bool pad = false, bool force = false) const;
105 105
106 void print (std::ostream& os, bool pr_as_read_syntax = false) const; 106 void print (std::ostream& os, bool pr_as_read_syntax = false) const;
107 107
108 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; 108 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const;
109 109