git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-doxygen@13261 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
207 B
OpenEdge ABL
15 lines
207 B
OpenEdge ABL
%module doxygen_parsing_enums
|
|
|
|
%inline %{
|
|
|
|
|
|
/** Test enumeration */
|
|
enum E_TEST
|
|
{
|
|
/** the first item */
|
|
E_TEST_ONE,
|
|
E_TEST_TWO = 2, /**< the second */
|
|
E_TEST_THREE = 2+1 /**< the last item */
|
|
};
|
|
|
|
%}
|