git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4361 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
239 B
OpenEdge ABL
12 lines
239 B
OpenEdge ABL
|
|
// This testcase uses the %javaconst directive to control how enums are initialised
|
|
|
|
%module java_enums
|
|
|
|
// Set default Java const code generation
|
|
%javaconst(1);
|
|
|
|
%inline %{
|
|
enum stuff { FIDDLE = 2*100, STICKS = 5+8, BONGO, DRUMS };
|
|
%}
|
|
|