You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using enum values in a very unusual way where each value is a command identifier used in a structure with fields for parameters. The identifier will define how the params are used. I have been using the @param javadoc tag to document the way the params are used for each command.
Anyways, this works in doxygen but will not work in asciidoxy (the description will be an empty string and params is also empty).
Example:
enumCmdID {
/** * Dummy command (no op). * * @param int_val_1: NULL * @param int_val_2: NULL */CMD_DO_NOTHING,
/** * Does something. * * @param int_val_1: First value to do something with. * @param int_val_2: Second value to do something with. * * @returns Status of something. * @retval 0: Something is done. * @retval -1: Something is not done. */CMD_DO_SOMETHING,
};
The text was updated successfully, but these errors were encountered:
That is an interesting use case. Currently, it is indeed not supported. I am refactoring the internal model for 0.9.x to prepare for the 1.0 release. I will take this into account and try to have it supported as well.
I'm using enum values in a very unusual way where each value is a command identifier used in a structure with fields for parameters. The identifier will define how the params are used. I have been using the
@param
javadoc tag to document the way the params are used for each command.Anyways, this works in doxygen but will not work in asciidoxy (the description will be an empty string and params is also empty).
Example:
The text was updated successfully, but these errors were encountered: