We use doxygen to document our C/C++ code in a project we've just started and we'd like to achieve the following, if possible. When creating a custom ALIAS, with multiple arguments, the syntax we'd use in our code-doc would look like:
/**
* @myalias{param1,param2}
*/
and in our .doxy file, the definition of this ALIAS would look like:
ALIASES += myalias{2}="do something with \1 and with \2"
What we'd like instead would be to define a custom tag, that behaves like @param, which would allow us to use the following syntax when documenting our source-files:
/**
* @myalias param1 param2
*/
and still be able to refer to param1 & param2 somehow.
I know that, for instance, the @param tag can discern between param1 & param2 as being 2 DIFFERENT entities, and it doesn't need any curly braces.
Would it be possible to define a custom tag in which we could access param1 & param2 as separate entities in our .doxy files, but by using a code-doc syntax WITHOUT the curly braces?
Thank you in advance