Mercurial > hg > octave-nkf
diff src/ov-str-mat.h @ 2477:3d905d3820a4
[project @ 1996-11-07 16:46:11 by jwe]
author | jwe |
---|---|
date | Thu, 07 Nov 1996 16:48:16 +0000 |
parents | 1573640a9994 |
children | 8ed4362aa0d6 |
line wrap: on
line diff
--- a/src/ov-str-mat.h +++ b/src/ov-str-mat.h @@ -45,7 +45,8 @@ class tree_walker; -// Real scalar values. +// Character matrix values with special properties for use as +// strings. class octave_char_matrix_str : public octave_char_matrix @@ -77,11 +78,6 @@ octave_value *clone (void) { return new octave_char_matrix_str (*this); } -#if 0 - void *operator new (size_t size); - void operator delete (void *p, size_t size); -#endif - type_conv_fcn numeric_conversion_function (void) const; octave_value index (const octave_value_list& idx) const; @@ -119,8 +115,10 @@ private: + // Type id of char_matrix_str objects, set by register_type(). static int t_id; + // Type name of char_matrix_strXX objects, defined in ov-str-mat.cc. static const string t_name; };