comparison src/ov-fcn-handle.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 cda4aa780d58
children 72c96de7a403
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
89 89
90 octave_value_list 90 octave_value_list
91 do_multi_index_op (int nargout, const octave_value_list& args); 91 do_multi_index_op (int nargout, const octave_value_list& args);
92 92
93 octave_value_list 93 octave_value_list
94 do_multi_index_op (int nargout, const octave_value_list& args, 94 do_multi_index_op (int nargout, const octave_value_list& args,
95 const std::list<octave_lvalue>* lvalue_list); 95 const std::list<octave_lvalue>* lvalue_list);
96 96
97 bool is_defined (void) const { return true; } 97 bool is_defined (void) const { return true; }
98 98
99 bool is_function_handle (void) const { return true; } 99 bool is_function_handle (void) const { return true; }
138 138
139 bool load_ascii (std::istream& is); 139 bool load_ascii (std::istream& is);
140 140
141 bool save_binary (std::ostream& os, bool& save_as_floats); 141 bool save_binary (std::ostream& os, bool& save_as_floats);
142 142
143 bool load_binary (std::istream& is, bool swap, 143 bool load_binary (std::istream& is, bool swap,
144 oct_mach_info::float_format fmt); 144 oct_mach_info::float_format fmt);
145 145
146 #if defined (HAVE_HDF5) 146 #if defined (HAVE_HDF5)
147 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); 147 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats);
148 148
192 octave_fcn_binder : public octave_fcn_handle 192 octave_fcn_binder : public octave_fcn_handle
193 { 193 {
194 private: 194 private:
195 // Private ctor. 195 // Private ctor.
196 octave_fcn_binder (const octave_value& f, const octave_value& root, 196 octave_fcn_binder (const octave_value& f, const octave_value& root,
197 const octave_value_list& templ, 197 const octave_value_list& templ,
198 const std::vector<int>& mask, int exp_nargin); 198 const std::vector<int>& mask, int exp_nargin);
199 199
200 public: 200 public:
201 201
202 // Factory method. 202 // Factory method.
204 204
205 octave_value_list 205 octave_value_list
206 do_multi_index_op (int nargout, const octave_value_list& args); 206 do_multi_index_op (int nargout, const octave_value_list& args);
207 207
208 octave_value_list 208 octave_value_list
209 do_multi_index_op (int nargout, const octave_value_list& args, 209 do_multi_index_op (int nargout, const octave_value_list& args,
210 const std::list<octave_lvalue>* lvalue_list); 210 const std::list<octave_lvalue>* lvalue_list);
211 211
212 protected: 212 protected:
213 213
214 octave_value root_handle; 214 octave_value root_handle;