mirror of https://github.com/swig/swig.git
45 lines
1.0 KiB
OpenEdge ABL
45 lines
1.0 KiB
OpenEdge ABL
%module python_annotations_variable_typing
|
|
|
|
// Tests Python variable annotations, containing PEP 484 types, in C++ member variables wrappers.
|
|
// Member variables are wrapped using Python properties.
|
|
|
|
%feature("python:annotations", "typing");
|
|
%feature("python:annotations:novar") member_variable_not_annotated;
|
|
%feature("python:annotations:novar") A_CONSTANT_NOVAR;
|
|
|
|
%inline %{
|
|
namespace Space {
|
|
template<class T>
|
|
struct Template {
|
|
int member_variable;
|
|
int member_variable_not_annotated;
|
|
};
|
|
struct StructWithVar{
|
|
int member_variable;
|
|
};
|
|
struct StructWithVarNotAnnotated {
|
|
int member_variable_not_annotated;
|
|
};
|
|
short global_variable;
|
|
}
|
|
%}
|
|
%template(TemplateShort) Space::Template<short>;
|
|
|
|
%inline %{
|
|
#ifdef SWIGPYTHON_BUILTIN
|
|
int is_python_builtin() { return 1; }
|
|
#else
|
|
int is_python_builtin() { return 0; }
|
|
#endif
|
|
|
|
#if defined SWIGPYTHON_FASTPROXY
|
|
int is_python_fastproxy() { return 1; }
|
|
#else
|
|
int is_python_fastproxy() { return 0; }
|
|
#endif
|
|
%}
|
|
|
|
%constant int A_CONSTANT_INT = 42;
|
|
%constant int A_CONSTANT_NOVAR = 42;
|
|
%constant short A_CONSTANT_SHORT = 42;
|