changeset 3166:c3409a0cafa8

[project @ 1998-04-16 03:12:19 by jwe]
author jwe
date Thu, 16 Apr 1998 03:12:21 +0000
parents e4bbfc196e53
children d609b993be3b
files src/ChangeLog src/ov-fcn.h
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Apr 16 03:05:03 1998 +0000
+++ b/src/ChangeLog	Thu Apr 16 03:12:21 1998 +0000
@@ -2,6 +2,8 @@
 
 	* input.cc (Vlast_prompt_time): New global variable.
 	(octave_gets): Set it.
+	* ov-fcn.h (octave_function::time_checked): New virtual function
+	(octave_function::mark_fcn_file_up_to_date): Ditto.
 	* ov-usr-fcn.h (octave_user_function::time_checked): New function.
 	(octave_user_function::mark_fcn_file_up_to_date): Ditto.
 	(octave_user_function::t_checked): New data member.
--- a/src/ov-fcn.h	Thu Apr 16 03:05:03 1998 +0000
+++ b/src/ov-fcn.h	Thu Apr 16 03:12:21 1998 +0000
@@ -67,8 +67,12 @@
 
   virtual string fcn_file_name (void) const { return string (); }
 
+  virtual void mark_fcn_file_up_to_date (time_t) { }
+
   virtual time_t time_parsed (void) const { return 0; }
 
+  virtual time_t time_checked (void) const { return 0; }
+
   string name (void) const { return my_name; }
 
   string doc_string (void) const { return doc; }