vote up 0 vote down star
1

Hi,

I am trying to figure out if there is a way to create a custom tag using Doxygen. I did find the ALIAS config line but that does not do exactly what I need.

Basically in code I want to be able to write something like

/// \req Requirement #322 - blah blah

And then have Doxygen create a list like it does for BUG and TODO commands for lines that have this custom tag.

This possible with Doxygen?

Thanks.

flag

1 Answer

vote up 3 vote down check

The generalization of \bug and \todo is \xrefitem.

The solution I suggest is:

  • in Doxyfile:

    ALIASES += "req=\xrefitem req \"Requirement\" \"Requirements\" "
    
  • in documented code:

    /// \req #42 - The system shall work in any situation
    
link|flag
Excellent, I did not see that while looking at the manual. Thanks a bunch. – RishiD Feb 11 at 15:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.