git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-doxygen@13275 626c5289-ae23-0410-ae9c-e8d60b6d4f22
35 lines
554 B
OpenEdge ABL
35 lines
554 B
OpenEdge ABL
%module doxygen_parsing_enums
|
|
|
|
%inline %{
|
|
|
|
|
|
/**
|
|
* Testing comments before enum items
|
|
*/
|
|
enum SomeAnotherEnum
|
|
{
|
|
/**
|
|
* The comment for the first item
|
|
*/
|
|
SOME_ITEM_1,
|
|
/**
|
|
* The comment for the second item
|
|
*/
|
|
SOME_ITEM_2,
|
|
/**
|
|
* The comment for the third item
|
|
*/
|
|
SOME_ITEM_3
|
|
};
|
|
|
|
/**
|
|
* Testing comments after enum items
|
|
*/
|
|
enum SomeAnotherEnum2
|
|
{
|
|
SOME_ITEM_10, ///< Post comment for the first item
|
|
SOME_ITEM_20, ///< Post comment for the second item
|
|
SOME_ITEM_30 ///< Post comment for the third item
|
|
};
|
|
|
|
%}
|