Mercurial > hg > octave-lyh
annotate src/ov-cell.h @ 7530:bb0f2353cff5
new cell array ctype mappers
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 25 Feb 2008 19:01:30 -0500 |
parents | a1dbe9d80eee |
children | c195bd0a5c64 |
rev | line source |
---|---|
3353 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007 |
4 John W. Eaton | |
3353 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
3353 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
3353 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_cell_h) | |
25 #define octave_cell_h 1 | |
26 | |
27 #include <cstdlib> | |
28 | |
3503 | 29 #include <iostream> |
3353 | 30 #include <string> |
31 | |
32 #include "mx-base.h" | |
33 #include "oct-alloc.h" | |
34 #include "str-vec.h" | |
35 | |
36 #include "Cell.h" | |
37 #include "error.h" | |
3928 | 38 #include "ov-base-mat.h" |
3353 | 39 #include "ov-typeinfo.h" |
40 | |
41 class Octave_map; | |
42 class octave_value_list; | |
43 | |
44 class tree_walker; | |
45 | |
46 // Cells. | |
47 | |
48 class | |
3928 | 49 octave_cell : public octave_base_matrix<Cell> |
3353 | 50 { |
51 public: | |
52 | |
53 octave_cell (void) | |
3928 | 54 : octave_base_matrix<Cell> () { } |
3353 | 55 |
56 octave_cell (const Cell& c) | |
3928 | 57 : octave_base_matrix<Cell> (c) { } |
3353 | 58 |
59 octave_cell (const octave_cell& c) | |
3928 | 60 : octave_base_matrix<Cell> (c) { } |
3353 | 61 |
62 ~octave_cell (void) { } | |
63 | |
64 void assign (const octave_value_list& idx, const octave_value& rhs); | |
65 | |
5759 | 66 octave_base_value *clone (void) const { return new octave_cell (*this); } |
67 octave_base_value *empty_clone (void) const { return new octave_cell (); } | |
3353 | 68 |
3928 | 69 #if 0 |
5759 | 70 octave_base_value *try_narrowing_conversion (void); |
3928 | 71 #endif |
72 | |
4994 | 73 octave_value subsref (const std::string&, |
74 const std::list<octave_value_list>&) | |
4271 | 75 { |
76 panic_impossible (); | |
77 return octave_value_list (); | |
78 } | |
79 | |
4994 | 80 octave_value_list subsref (const std::string& type, |
81 const std::list<octave_value_list>& idx, | |
82 int nargout); | |
83 | |
4247 | 84 octave_value subsasgn (const std::string& type, |
4219 | 85 const std::list<octave_value_list>& idx, |
3933 | 86 const octave_value& rhs); |
87 | |
4791 | 88 size_t byte_size (void) const; |
89 | |
4645 | 90 bool is_matrix_type (void) const { return false; } |
91 | |
4370 | 92 bool is_numeric_type (void) const { return false; } |
93 | |
3928 | 94 bool is_defined (void) const { return true; } |
3353 | 95 |
4994 | 96 bool is_constant (void) const { return false; } |
97 | |
3724 | 98 bool is_cell (void) const { return true; } |
99 | |
6116 | 100 bool is_cellstr (void) const { return matrix.is_cellstr (); } |
101 | |
3928 | 102 Cell cell_value (void) const { return matrix; } |
3353 | 103 |
3933 | 104 octave_value_list list_value (void) const; |
105 | |
5715 | 106 octave_value convert_to_str_internal (bool pad, bool, char type) const |
107 { return octave_value (all_strings (pad), type); } | |
4358 | 108 |
5715 | 109 string_vector all_strings (bool pad = false) const; |
4243 | 110 |
4604 | 111 bool print_as_scalar (void) const; |
112 | |
3933 | 113 void print (std::ostream& os, bool pr_as_read_syntax = false) const; |
114 | |
115 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; | |
116 | |
4687 | 117 |
6974 | 118 bool save_ascii (std::ostream& os); |
4687 | 119 |
120 bool load_ascii (std::istream& is); | |
121 | |
122 bool save_binary (std::ostream& os, bool& save_as_floats); | |
123 | |
124 bool load_binary (std::istream& is, bool swap, | |
125 oct_mach_info::float_format fmt); | |
126 | |
127 #if defined (HAVE_HDF5) | |
128 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); | |
129 | |
130 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug); | |
131 #endif | |
132 | |
7530
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
133 octave_value xisalnum (void) const { return matrix.xisalnum (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
134 octave_value xisalpha (void) const { return matrix.xisalpha (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
135 octave_value xisascii (void) const { return matrix.xisascii (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
136 octave_value xiscntrl (void) const { return matrix.xiscntrl (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
137 octave_value xisdigit (void) const { return matrix.xisdigit (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
138 octave_value xisgraph (void) const { return matrix.xisgraph (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
139 octave_value xislower (void) const { return matrix.xislower (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
140 octave_value xisprint (void) const { return matrix.xisprint (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
141 octave_value xispunct (void) const { return matrix.xispunct (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
142 octave_value xisspace (void) const { return matrix.xisspace (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
143 octave_value xisupper (void) const { return matrix.xisupper (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
144 octave_value xisxdigit (void) const { return matrix.xisxdigit (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
145 octave_value xtoascii (void) const { return matrix.xtoascii (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
146 octave_value xtolower (void) const { return matrix.xtolower (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
147 octave_value xtoupper (void) const { return matrix.xtoupper (); } |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
148 |
5900 | 149 mxArray *as_mxArray (void) const; |
150 | |
3353 | 151 private: |
4612 | 152 |
3353 | 153 DECLARE_OCTAVE_ALLOCATOR |
154 | |
155 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA | |
156 }; | |
157 | |
158 #endif | |
159 | |
160 /* | |
161 ;;; Local Variables: *** | |
162 ;;; mode: C++ *** | |
163 ;;; End: *** | |
164 */ |