changeset 2088:c5b4b6d51740

[project @ 1996-04-26 06:28:59 by jwe]
author jwe
date Fri, 26 Apr 1996 06:31:03 +0000
parents 088b063500d1
children 4dcc8b77e84a
files src/pt-fvc.cc src/pt-fvc.h
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/pt-fvc.cc	Fri Apr 26 06:21:21 1996 +0000
+++ b/src/pt-fvc.cc	Fri Apr 26 06:31:03 1996 +0000
@@ -617,7 +617,7 @@
   my_name = nm;
 }
 
-tree_builtin::tree_builtin (Mapper_fcn& m_fcn, const string &nm)
+tree_builtin::tree_builtin (builtin_mapper_function& m_fcn, const string &nm)
 {
   mapper_fcn = m_fcn;
   is_mapper = 1;
@@ -658,7 +658,7 @@
 }
 
 static octave_value
-apply_mapper_fcn (const octave_value& arg, Mapper_fcn& m_fcn,
+apply_mapper_fcn (const octave_value& arg, builtin_mapper_function& m_fcn,
 		  bool /* print */)
 {
   octave_value retval;
--- a/src/pt-fvc.h	Fri Apr 26 06:21:21 1996 +0000
+++ b/src/pt-fvc.h	Fri Apr 26 06:31:03 1996 +0000
@@ -153,7 +153,7 @@
 public:
   tree_builtin (const string& nm = string ());
 
-  tree_builtin (Mapper_fcn& m_fcn, const string& nm = string ());
+  tree_builtin (builtin_mapper_function& m_fcn, const string& nm = string ());
 
   tree_builtin (Octave_builtin_fcn f, const string& nm = string ());
 
@@ -175,7 +175,7 @@
 
 private:
   bool is_mapper;
-  Mapper_fcn mapper_fcn;
+  builtin_mapper_function mapper_fcn;
   Octave_builtin_fcn fcn;
   string my_name;
 };