comparison src/ov-dld-fcn.cc @ 10315:57a59eae83cc

untabify src C++ source files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:41:46 -0500
parents b39bd23019eb
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
10314:07ebe522dac2 10315:57a59eae83cc
35 #include "ov.h" 35 #include "ov.h"
36 36
37 DEFINE_OCTAVE_ALLOCATOR (octave_dld_function); 37 DEFINE_OCTAVE_ALLOCATOR (octave_dld_function);
38 38
39 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_dld_function, 39 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_dld_function,
40 "dynamically-linked function", 40 "dynamically-linked function",
41 "dynamically-linked function"); 41 "dynamically-linked function");
42 42
43 43
44 octave_dld_function::octave_dld_function 44 octave_dld_function::octave_dld_function
45 (octave_builtin::fcn ff, const octave_shlib& shl, 45 (octave_builtin::fcn ff, const octave_shlib& shl,
46 const std::string& nm, const std::string& ds) 46 const std::string& nm, const std::string& ds)
83 // before objects have been deleted will make the "delete" code 83 // before objects have been deleted will make the "delete" code
84 // of objects to point to an invalid code segment. 84 // of objects to point to an invalid code segment.
85 85
86 octave_dld_function* 86 octave_dld_function*
87 octave_dld_function::create (octave_builtin::fcn ff, const octave_shlib& shl, 87 octave_dld_function::create (octave_builtin::fcn ff, const octave_shlib& shl,
88 const std::string& nm, const std::string& ds) 88 const std::string& nm, const std::string& ds)
89 { 89 {
90 return new octave_dld_function (ff, shl, nm, ds); 90 return new octave_dld_function (ff, shl, nm, ds);
91 } 91 }