Mercurial > hg > octave-nkf
comparison src/ov.h @ 6974:9e32bb109980
[project @ 2007-10-08 11:06:47 by jwe]
author | jwe |
---|---|
date | Mon, 08 Oct 2007 11:06:48 +0000 |
parents | 83619ae96c1d |
children | 93c65f2a5668 |
comparison
equal
deleted
inserted
replaced
6973:6fcc2f5b2c7d | 6974:9e32bb109980 |
---|---|
801 const octave_base_value& get_rep (void) const { return *rep; } | 801 const octave_base_value& get_rep (void) const { return *rep; } |
802 | 802 |
803 void print_info (std::ostream& os, | 803 void print_info (std::ostream& os, |
804 const std::string& prefix = std::string ()) const; | 804 const std::string& prefix = std::string ()) const; |
805 | 805 |
806 bool save_ascii (std::ostream& os, bool& infnan_warned) | 806 bool save_ascii (std::ostream& os) { return rep->save_ascii (os); } |
807 { return rep->save_ascii (os, infnan_warned); } | 807 |
808 | 808 bool load_ascii (std::istream& is) { return rep->load_ascii (is); } |
809 bool load_ascii (std::istream& is) | |
810 { return rep->load_ascii (is); } | |
811 | 809 |
812 bool save_binary (std::ostream& os, bool& save_as_floats) | 810 bool save_binary (std::ostream& os, bool& save_as_floats) |
813 { return rep->save_binary (os, save_as_floats); } | 811 { return rep->save_binary (os, save_as_floats); } |
814 | 812 |
815 bool load_binary (std::istream& is, bool swap, | 813 bool load_binary (std::istream& is, bool swap, |