Mercurial > hg > octave-nkf
comparison src/ov-struct.h @ 4687:e95c86d48732
[project @ 2004-01-06 21:53:34 by jwe]
author | jwe |
---|---|
date | Tue, 06 Jan 2004 21:53:34 +0000 |
parents | 12b6fbd57436 |
children | 62f2fb593455 |
comparison
equal
deleted
inserted
replaced
4686:c7ae43dfdea4 | 4687:e95c86d48732 |
---|---|
105 | 105 |
106 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; | 106 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; |
107 | 107 |
108 bool print_name_tag (std::ostream& os, const std::string& name) const; | 108 bool print_name_tag (std::ostream& os, const std::string& name) const; |
109 | 109 |
110 bool save_ascii (std::ostream& os, bool& infnan_warned, | |
111 bool strip_nan_and_inf); | |
112 | |
113 bool load_ascii (std::istream& is); | |
114 | |
115 bool save_binary (std::ostream& os, bool& save_as_floats); | |
116 | |
117 bool load_binary (std::istream& is, bool swap, | |
118 oct_mach_info::float_format fmt); | |
119 | |
120 #if defined (HAVE_HDF5) | |
121 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); | |
122 | |
123 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug); | |
124 #endif | |
125 | |
110 private: | 126 private: |
111 | 127 |
112 // The associative array used to manage the structure data. | 128 // The associative array used to manage the structure data. |
113 Octave_map map; | 129 Octave_map map; |
114 | 130 |