Mercurial > hg > octave-lyh
comparison src/ov-scalar.h @ 4687:e95c86d48732
[project @ 2004-01-06 21:53:34 by jwe]
author | jwe |
---|---|
date | Tue, 06 Jan 2004 21:53:34 +0000 |
parents | bd2067547b40 |
children | 34a740dc31a6 |
comparison
equal
deleted
inserted
replaced
4686:c7ae43dfdea4 | 4687:e95c86d48732 |
---|---|
106 | 106 |
107 void increment (void) { ++scalar; } | 107 void increment (void) { ++scalar; } |
108 | 108 |
109 void decrement (void) { --scalar; } | 109 void decrement (void) { --scalar; } |
110 | 110 |
111 bool save_ascii (std::ostream& os, bool& infnan_warned, | |
112 bool strip_nan_and_inf); | |
113 | |
114 bool load_ascii (std::istream& is); | |
115 | |
116 bool save_binary (std::ostream& os, bool& save_as_floats); | |
117 | |
118 bool load_binary (std::istream& is, bool swap, | |
119 oct_mach_info::float_format fmt); | |
120 | |
121 #if defined (HAVE_HDF5) | |
122 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); | |
123 | |
124 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug); | |
125 #endif | |
126 | |
111 private: | 127 private: |
112 | 128 |
113 DECLARE_OCTAVE_ALLOCATOR | 129 DECLARE_OCTAVE_ALLOCATOR |
114 | 130 |
115 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA | 131 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA |