comparison src/ov-dld-fcn.h @ 3523:b80bbb43a1a9

[project @ 2000-02-02 10:25:52 by jwe]
author jwe
date Wed, 02 Feb 2000 10:26:25 +0000
parents e84e324db1de
children 6e86256e9c54
comparison
equal deleted inserted replaced
3522:bd422cf62f0c 3523:b80bbb43a1a9
46 octave_dld_function : public octave_builtin 46 octave_dld_function : public octave_builtin
47 { 47 {
48 public: 48 public:
49 49
50 octave_dld_function (octave_builtin::fcn ff, const octave_shlib& shl, 50 octave_dld_function (octave_builtin::fcn ff, const octave_shlib& shl,
51 const string& nm = string (), 51 const std::string& nm = std::string (),
52 const string& ds = string ()); 52 const std::string& ds = std::string ());
53 53
54 ~octave_dld_function (void); 54 ~octave_dld_function (void);
55 55
56 void mark_fcn_file_up_to_date (const octave_time& t) { t_checked = t; } 56 void mark_fcn_file_up_to_date (const octave_time& t) { t_checked = t; }
57 57
58 string fcn_file_name (void) const; 58 std::string fcn_file_name (void) const;
59 59
60 octave_time time_parsed (void) const; 60 octave_time time_parsed (void) const;
61 61
62 octave_time time_checked (void) const { return t_checked; } 62 octave_time time_checked (void) const { return t_checked; }
63 63