import source from 1.3.40
[external/swig.git] / Examples / test-suite / enum_plus.i
1 %module enum_plus
2
3 %warnfilter(SWIGWARN_RUBY_WRONG_NAME) iFoo; /* Ruby, wrong constant name */
4
5 %inline %{
6 struct iFoo 
7
8     enum { 
9        Phoo = +50 
10     }; 
11 }; 
12 %}