diff src/ov-base.cc @ 4343:db5e0814277a

[project @ 2003-02-20 16:44:16 by jwe]
author jwe
date Thu, 20 Feb 2003 16:46:37 +0000
parents e556870ce8f0
children d39de791ef9c
line wrap: on
line diff
--- a/src/ov-base.cc	Thu Feb 20 08:35:55 2003 +0000
+++ b/src/ov-base.cc	Thu Feb 20 16:46:37 2003 +0000
@@ -50,6 +50,7 @@
 #include "ov-re-mat.h"
 #include "ov-scalar.h"
 #include "ov-str-mat.h"
+#include "ov-fcn-handle.h"
 #include "variables.h"
 
 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_base_value, "<unknown type>");
@@ -402,6 +403,17 @@
   return retval;
 }
 
+octave_fcn_handle
+octave_base_value::fcn_handle_value (bool silent)
+{
+  octave_fcn_handle retval;
+
+  if (! silent)
+    gripe_wrong_type_arg ("octave_base_value::fcn_handle_value()",
+			  type_name ());
+  return retval;
+}
+
 octave_value_list
 octave_base_value::list_value (void) const
 {