Reuse 'ctype' typemap and remove 'proxycouttype' typemap.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-c@13680 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Leif Middelschulte 2012-08-20 13:23:03 +00:00
commit 5aa23f9bdb
3 changed files with 4 additions and 35 deletions

View file

@ -21,10 +21,6 @@ class string;
%typemap(couttype) string * "char *"
%typemap(couttype) string & "char *"
%typemap(couttype) const string & "char *"
%typemap(proxycouttype) string "char *"
%typemap(proxycouttype) string * "char *"
%typemap(proxycouttype) string & "char *"
%typemap(proxycouttype) const string & "char *"
%typemap(cppouttype, retobj="1") string "std::string*"
%typemap(cppouttype) const string &, string *, string & "std::string*"