comparison src/TEMPLATE-INST/Array-tc.cc @ 4280:3dc0815a2954

[project @ 2003-01-04 03:11:42 by jwe]
author jwe
date Sat, 04 Jan 2003 03:11:42 +0000
parents 7690958e7726
children 75ee1995d2b4
comparison
equal deleted inserted replaced
4279:64c444ac1fee 4280:3dc0815a2954
35 #include "DiagArray2.h" 35 #include "DiagArray2.h"
36 #include "DiagArray2.cc" 36 #include "DiagArray2.cc"
37 37
38 #include "oct-obj.h" 38 #include "oct-obj.h"
39 39
40 template class Array<octave_value>;
41
42 template<> 40 template<>
43 octave_value 41 octave_value
44 Array<octave_value>::resize_fill_value (void) 42 Array<octave_value>::resize_fill_value (void)
45 { 43 {
46 static octave_value retval = octave_value (Matrix ()); 44 static octave_value retval = octave_value (Matrix ());
47 return retval; 45 return retval;
48 } 46 }
47
48 template class Array<octave_value>;
49 49
50 template int assign (Array<octave_value>&, const Array<octave_value>&); 50 template int assign (Array<octave_value>&, const Array<octave_value>&);
51 51
52 template int assign (Array<octave_value>&, 52 template int assign (Array<octave_value>&,
53 const Array<octave_value>&, const octave_value&); 53 const Array<octave_value>&, const octave_value&);