From a3b6cf78e6a77660be202349f23203fe6dfe0804 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Mon, 3 Apr 2000 07:40:33 +0000 Subject: [PATCH] {Changes contributed by Matthias Koeppe} (GUILE): Declare new data member `with_smobs' for this class. Member method `get_pointer' now takes two additional args, namely `String &proc_name' and `int num_scheme_parm'. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@357 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Source/Modules1.1/guile.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SWIG/Source/Modules1.1/guile.h b/SWIG/Source/Modules1.1/guile.h index 404d7dfc3..97cb604bc 100644 --- a/SWIG/Source/Modules1.1/guile.h +++ b/SWIG/Source/Modules1.1/guile.h @@ -30,7 +30,10 @@ private: char *module; char *package; int linkage; - void get_pointer(char *iname, int parm, DataType *t, WrapperFunction &f); + bool with_smobs; + void get_pointer(char *iname, int parm, DataType *t, + WrapperFunction &f, const String &proc_name, + int num_scheme_parm); void usage_var(char *, DataType *, String &usage); void usage_func(char *, DataType *, ParmList *, String &usage); void usage_returns(char *, DataType *, ParmList *, String &usage);