13 lines
119 B
OpenEdge ABL
13 lines
119 B
OpenEdge ABL
%module inline_initializer
|
|
|
|
%inline %{
|
|
class Foo {
|
|
int x;
|
|
public:
|
|
Foo(int a);
|
|
};
|
|
|
|
Foo::Foo(int a) : x(a) { }
|
|
|
|
%}
|