git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4667 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
119 B
OpenEdge ABL
12 lines
119 B
OpenEdge ABL
%module inline_initializer
|
|
|
|
%inline %{
|
|
class Foo {
|
|
int x;
|
|
public:
|
|
Foo(int a);
|
|
};
|
|
|
|
Foo::Foo(int a) : x(a) { }
|
|
|
|
%}
|