add missing const ptr case

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7534 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-09-26 14:53:39 +00:00
commit 1a8b5611e5
2 changed files with 7 additions and 0 deletions

View file

@ -26,6 +26,7 @@ public:
virtual void foo_meth_ptr(Foo_int *, int);
virtual void foo_meth_val(Foo_int, int);
virtual void foo_meth_cref(const Foo_int &, int);
virtual void foo_meth_cptr(const Foo_int *, int);
};
Bar::~Bar()
@ -41,6 +42,7 @@ void Bar::foo_meth_ref(Foo_int &arg, int param) { }
void Bar::foo_meth_ptr(Foo_int *arg, int param) { }
void Bar::foo_meth_val(Foo_int arg, int param) { }
void Bar::foo_meth_cref(const Foo_int &arg, int param) { }
void Bar::foo_meth_cptr(const Foo_int *arg, int param) { }
%}
%template(Foo_integers) Foo<int>;