swig/Examples/test-suite/defvalue_constructor.i
William S Fulton 136025b035 missing function body added
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6413 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-10-17 19:22:58 +00:00

14 lines
158 B
OpenEdge ABL

%module defvalue_constructor
%inline %{
namespace Foo {
class Bar {};
class Baz {
public:
Baz(Bar b = Bar()) {}
};
}
%}