fix %rename + %copyctor issue reported by William

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9020 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-03-20 01:06:11 +00:00
commit 8561339c44
2 changed files with 12 additions and 1 deletions

View file

@ -109,3 +109,13 @@ public:
#endif
%rename(ABC_Libor_ModelUtils) ABC_Nam::ABC_Libor::ModelUtils;
%copyctor;
%inline %{
namespace ABC_Nam {
namespace ABC_Libor {
struct ModelUtils {};
}
}
%}