swig/Examples/test-suite/python/nondynamic.i
Marcelo Matus 74c523675d add test for nondynamic
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6265 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-09-26 00:52:24 +00:00

59 lines
786 B
OpenEdge ABL

%module nondynamic
/*
Use the "static" feature to make the wrapped class a static one,
ie, a python class that doesn't dynamically add new attributes.
Hence, for the class
%feature("static") A;
struct A
{
int a;
int b;
};
you will get:
aa = A()
aa.a = 1 # Ok
aa.b = 1 # Ok
aa.c = 3 # error
Since "static" is a feature, if you use
%feature("static");
it will make all the wrapped class static ones.
The implementation is based on the recipe:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/252158
and works for modern (-modern) and plain python.
*/
//%pythonnondynamic(1);
%pythonnondynamic(1) A;
%pythondynamic(1) C;
%inline %{
struct A
{
int a;
int b;
};
struct C
{
int a;
int b;
};
%}