xref
: /
dports
/
devel
/
swig
/
swig-4.0.2
/
Examples
/
test-suite
/
enum_var.i
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
%
module
enum_var
2
3
%
inline
%{
4
5
enum
Fruit
{
APPLE
,
PEAR
};
6
Fruit
test
;
7
8
%}
9