add missing freearg and typecheck typemaps

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7855 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-11-21 20:31:05 +00:00
commit 7f28889467

View file

@ -28,6 +28,8 @@ namespace Foo {
%typemap(javaout) Str1 * = char *;
#endif
%typemap(in) Str1 * = char *;
%typemap(freearg) Str1 * = char *;
%typemap(typecheck) Str1 * = char *;
%apply char * { Str2 * };
}