comparison src/ov.cc @ 5848:415ae81d331b

[project @ 2006-06-08 20:37:29 by jwe]
author jwe
date Thu, 08 Jun 2006 20:37:29 +0000
parents 080c08b192d8
children acb4a1e0b311
comparison
equal deleted inserted replaced
5847:62e7b9307d00 5848:415ae81d331b
58 #include "ov-struct.h" 58 #include "ov-struct.h"
59 #include "ov-streamoff.h" 59 #include "ov-streamoff.h"
60 #include "ov-list.h" 60 #include "ov-list.h"
61 #include "ov-cs-list.h" 61 #include "ov-cs-list.h"
62 #include "ov-colon.h" 62 #include "ov-colon.h"
63 #include "ov-va-args.h"
64 #include "ov-builtin.h" 63 #include "ov-builtin.h"
65 #include "ov-mapper.h" 64 #include "ov-mapper.h"
66 #include "ov-dld-fcn.h" 65 #include "ov-dld-fcn.h"
67 #include "ov-usr-fcn.h" 66 #include "ov-usr-fcn.h"
68 #include "ov-fcn-handle.h" 67 #include "ov-fcn-handle.h"
673 { 672 {
674 } 673 }
675 674
676 octave_value::octave_value (octave_value::magic_colon) 675 octave_value::octave_value (octave_value::magic_colon)
677 : rep (new octave_magic_colon ()) 676 : rep (new octave_magic_colon ())
678 {
679 }
680
681 octave_value::octave_value (octave_value::all_va_args)
682 : rep (new octave_all_va_args ())
683 { 677 {
684 } 678 }
685 679
686 octave_value::octave_value (octave_base_value *new_rep) 680 octave_value::octave_value (octave_base_value *new_rep)
687 : rep (new_rep) 681 : rep (new_rep)
1840 octave_sparse_matrix::register_type (); 1834 octave_sparse_matrix::register_type ();
1841 octave_sparse_complex_matrix::register_type (); 1835 octave_sparse_complex_matrix::register_type ();
1842 octave_struct::register_type (); 1836 octave_struct::register_type ();
1843 octave_list::register_type (); 1837 octave_list::register_type ();
1844 octave_cs_list::register_type (); 1838 octave_cs_list::register_type ();
1845 octave_all_va_args::register_type ();
1846 octave_magic_colon::register_type (); 1839 octave_magic_colon::register_type ();
1847 octave_builtin::register_type (); 1840 octave_builtin::register_type ();
1848 octave_mapper::register_type (); 1841 octave_mapper::register_type ();
1849 octave_user_function::register_type (); 1842 octave_user_function::register_type ();
1850 octave_dld_function::register_type (); 1843 octave_dld_function::register_type ();