/tags/rel-1-3-26/SWIG/Examples/test-suite/enum_var.i
Swig | 8 lines | 5 code | 3 blank | 0 comment | 0 complexity | 60153ce5f61d0bbc7c3307646af122dd MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1%module enum_var 2 3%inline %{ 4 5enum Fruit { APPLE, PEAR }; 6Fruit test; 7 8%}