comparison src/ov.cc @ 4930:bdb307dc8613

[project @ 2004-08-05 04:55:26 by jwe]
author jwe
date Thu, 05 Aug 2004 04:55:26 +0000
parents 90f51232d751
children cd58733c326b
comparison
equal deleted inserted replaced
4929:585e9a8c2ef8 4930:bdb307dc8613
728 rep->count = 1; 728 rep->count = 1;
729 } 729 }
730 730
731 octave_value::octave_value (const streamoff_array& off) 731 octave_value::octave_value (const streamoff_array& off)
732 : rep (new octave_streamoff (off)) 732 : rep (new octave_streamoff (off))
733 {
734 rep->count = 1;
735 }
736
737 octave_value::octave_value (octave_function *f)
738 : rep (f)
739 {
740 rep->count = 1;
741 }
742
743 octave_value::octave_value (octave_function *f, const std::string& nm)
744 : rep (new octave_fcn_handle (f, nm))
745 { 733 {
746 rep->count = 1; 734 rep->count = 1;
747 } 735 }
748 736
749 octave_value::octave_value (const octave_value_list& l, bool is_csl) 737 octave_value::octave_value (const octave_value_list& l, bool is_csl)