summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2006-12-20 23:11:09 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2006-12-20 23:11:09 +0000
commite284fcbf02881039aee9ce003e1f2647444ccdcf (patch)
tree00cc01b393a271ba12137948e9d9a4206d090fc9
parentd6f38ba217328875acef4b27d784cef54fde2315 (diff)
downloadswig-e284fcbf02881039aee9ce003e1f2647444ccdcf.tar.gz
remove csvarin/csvarout typemaps which will never be used
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9625 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--Lib/csharp/std_string.i12
1 files changed, 2 insertions, 10 deletions
diff --git a/Lib/csharp/std_string.i b/Lib/csharp/std_string.i
index 219a511b1..2258b2c92 100644
--- a/Lib/csharp/std_string.i
+++ b/Lib/csharp/std_string.i
@@ -26,6 +26,7 @@ class string;
%typemap(ctype) string "char *"
%typemap(imtype) string "string"
%typemap(cstype) string "string"
+
%typemap(csdirectorin) string "$iminput"
%typemap(csdirectorout) string "$cscall"
@@ -52,16 +53,6 @@ class string;
return ret;
}
-%typemap(csvarin, excode=SWIGEXCODE2) string %{
- set {
- $imcall;$excode
- } %}
-%typemap(csvarout, excode=SWIGEXCODE2) string %{
- get {
- string ret = $imcall;$excode
- return ret;
- } %}
-
%typemap(typecheck) string = char *;
%typemap(throws, canthrow=1) string
@@ -72,6 +63,7 @@ class string;
%typemap(ctype) const string & "char *"
%typemap(imtype) const string & "string"
%typemap(cstype) const string & "string"
+
%typemap(csdirectorin) const string & "$iminput"
%typemap(csdirectorout) const string & "$cscall"