use %kwargs

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8179 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-01-02 09:52:56 +00:00
commit dbfa64aab9

View file

@ -1,6 +1,6 @@
%module kwargs %module kwargs
%feature("kwargs"); %kwargs;
// Simple class // Simple class
%extend Foo %extend Foo
@ -25,7 +25,7 @@
return new Foo(a, b); return new Foo(a, b);
} }
virtual ~Foo(){ virtual ~Foo() {
} }
}; };