git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7673 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
223 B
OpenEdge ABL
18 lines
223 B
OpenEdge ABL
%module iadd
|
|
|
|
%include attribute.i
|
|
%{
|
|
#include "iadd.h"
|
|
%}
|
|
class Foo;
|
|
%attribute_ref(test::Foo, test::A& , AsA);
|
|
%attribute_ref(test::Foo, long, AsLong);
|
|
|
|
|
|
%typemap(out) B & B::operator+= "hello";
|
|
|
|
|
|
|
|
|
|
|
|
%include "iadd.h"
|