Mercurial > hg > octave-lyh
comparison src/ov-struct.h @ 5759:ce79d238f142
[project @ 2006-04-13 13:04:32 by jwe]
author | jwe |
---|---|
date | Thu, 13 Apr 2006 13:04:33 +0000 |
parents | 4c8a2e4e0717 |
children | faafc2d98b8d |
comparison
equal
deleted
inserted
replaced
5758:65208d959bf1 | 5759:ce79d238f142 |
---|---|
59 octave_struct (const octave_struct& s) | 59 octave_struct (const octave_struct& s) |
60 : octave_base_value (), map (s.map) { } | 60 : octave_base_value (), map (s.map) { } |
61 | 61 |
62 ~octave_struct (void) { } | 62 ~octave_struct (void) { } |
63 | 63 |
64 octave_value *clone (void) const { return new octave_struct (*this); } | 64 octave_base_value *clone (void) const { return new octave_struct (*this); } |
65 octave_value *empty_clone (void) const { return new octave_struct (); } | 65 octave_base_value *empty_clone (void) const { return new octave_struct (); } |
66 | 66 |
67 Cell dotref (const octave_value_list& idx); | 67 Cell dotref (const octave_value_list& idx); |
68 | 68 |
69 octave_value subsref (const std::string&, | 69 octave_value subsref (const std::string&, |
70 const std::list<octave_value_list>&) | 70 const std::list<octave_value_list>&) |