comparison src/oct-stream.cc @ 5887:39cbf6a484bb

[project @ 2006-07-14 21:02:33 by jwe]
author jwe
date Fri, 14 Jul 2006 21:02:51 +0000
parents cbf717bf8150
children 769b203ede37
comparison
equal deleted inserted replaced
5886:b9676944b7a2 5887:39cbf6a484bb
3446 } 3446 }
3447 3447
3448 return retval; 3448 return retval;
3449 } 3449 }
3450 3450
3451 template bool
3452 do_write (std::ostream&, const octave_int8&, oct_data_conv::data_type,
3453 oct_mach_info::float_format, bool, bool);
3454
3455 template bool
3456 do_write (std::ostream&, const octave_uint8&, oct_data_conv::data_type,
3457 oct_mach_info::float_format, bool, bool);
3458
3459 template bool
3460 do_write (std::ostream&, const octave_int16&, oct_data_conv::data_type,
3461 oct_mach_info::float_format, bool, bool);
3462
3463 template bool
3464 do_write (std::ostream&, const octave_uint16&, oct_data_conv::data_type,
3465 oct_mach_info::float_format, bool, bool);
3466
3467 template bool
3468 do_write (std::ostream&, const octave_int32&, oct_data_conv::data_type,
3469 oct_mach_info::float_format, bool, bool);
3470
3471 template bool
3472 do_write (std::ostream&, const octave_uint32&, oct_data_conv::data_type,
3473 oct_mach_info::float_format, bool, bool);
3474
3475 template bool
3476 do_write (std::ostream&, const octave_int64&, oct_data_conv::data_type,
3477 oct_mach_info::float_format, bool, bool);
3478
3479 template bool
3480 do_write (std::ostream&, const octave_uint64&, oct_data_conv::data_type,
3481 oct_mach_info::float_format, bool, bool);
3482
3451 template <class T> 3483 template <class T>
3452 octave_idx_type 3484 octave_idx_type
3453 octave_stream::write (const Array<T>& data, octave_idx_type block_size, 3485 octave_stream::write (const Array<T>& data, octave_idx_type block_size,
3454 oct_data_conv::data_type output_type, 3486 oct_data_conv::data_type output_type,
3455 octave_idx_type skip, oct_mach_info::float_format flt_fmt) 3487 octave_idx_type skip, oct_mach_info::float_format flt_fmt)