jobject test added

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9432 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-10-11 22:35:17 +00:00
commit e11d78b88e

View file

@ -114,6 +114,11 @@ namespace hi {
};
}
struct JObjectTest {
virtual ~JObjectTest() {}
// Test special Java JNI type jobject
virtual jobject foo(jobject x) { return x; }
};
%}