comparison src/ov-fcn-inline.h @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents fd0a3ac60b0e
children 72c96de7a403
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
44 public: 44 public:
45 45
46 octave_fcn_inline (void) 46 octave_fcn_inline (void)
47 : octave_fcn_handle (), iftext (), ifargs () { } 47 : octave_fcn_handle (), iftext (), ifargs () { }
48 48
49 octave_fcn_inline (const std::string& f, const string_vector& a, 49 octave_fcn_inline (const std::string& f, const string_vector& a,
50 const std::string& n = std::string ()); 50 const std::string& n = std::string ());
51 51
52 octave_fcn_inline (const octave_fcn_inline& fi) 52 octave_fcn_inline (const octave_fcn_inline& fi)
53 : octave_fcn_handle (fi), iftext (fi.iftext), ifargs (fi.ifargs) { } 53 : octave_fcn_handle (fi), iftext (fi.iftext), ifargs (fi.ifargs) { }
54 54
73 73
74 bool load_ascii (std::istream& is); 74 bool load_ascii (std::istream& is);
75 75
76 bool save_binary (std::ostream& os, bool& save_as_floats); 76 bool save_binary (std::ostream& os, bool& save_as_floats);
77 77
78 bool load_binary (std::istream& is, bool swap, 78 bool load_binary (std::istream& is, bool swap,
79 oct_mach_info::float_format fmt); 79 oct_mach_info::float_format fmt);
80 80
81 #if defined (HAVE_HDF5) 81 #if defined (HAVE_HDF5)
82 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); 82 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats);
83 83