comparison src/ov.h @ 5958:85c7dc4afe6b

[project @ 2006-08-23 18:35:38 by jwe]
author jwe
date Wed, 23 Aug 2006 18:35:39 +0000
parents cdef72fcd206
children c68896f193e3
comparison
equal deleted inserted replaced
5957:370f785718be 5958:85c7dc4afe6b
776 const octave_base_value& get_rep (void) const { return *rep; } 776 const octave_base_value& get_rep (void) const { return *rep; }
777 777
778 void print_info (std::ostream& os, 778 void print_info (std::ostream& os,
779 const std::string& prefix = std::string ()) const; 779 const std::string& prefix = std::string ()) const;
780 780
781 bool save_ascii (std::ostream& os, bool& infnan_warned, 781 bool save_ascii (std::ostream& os, bool& infnan_warned)
782 int strip_nan_and_inf) 782 { return rep->save_ascii (os, infnan_warned); }
783 { return rep->save_ascii (os, infnan_warned, strip_nan_and_inf); }
784 783
785 bool load_ascii (std::istream& is) 784 bool load_ascii (std::istream& is)
786 { return rep->load_ascii (is); } 785 { return rep->load_ascii (is); }
787 786
788 bool save_binary (std::ostream& os, bool& save_as_floats) 787 bool save_binary (std::ostream& os, bool& save_as_floats)