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
My college has some pretty strict coding standards and one of them is with documenting with doxygen. I have gotten pretty far with editing the config so that it matches what I'm supposed to write.
Code example
here is what is expected in the coding standard
/** ********************************************************************** * @author Travis C. * * @par Description * returns the square root of the input * * @param[in] input the double to be rooted. * * @returns the root of input * * @par Example * @verbatim double x = 144; double result = mySqrt(x); // result would be 12.0 double x = 4; double result = mySqrt(x); // result would be 2.0 double x = 1010910920190; double result = mySqrt(x); // result would be 1005440.65971 @endverbatim ************************************************************************/
what I'm confused on is how I can add multiple different custom tags. I can add @Par description but it changes it for both custom tags, even what I have is really helpful but this would make it much easier.
The text was updated successfully, but these errors were encountered:
Description
My college has some pretty strict coding standards and one of them is with documenting with doxygen. I have gotten pretty far with editing the config so that it matches what I'm supposed to write.
Code example
here is what is expected in the coding standard
What I have
Here are the settings I have changed
what I'm confused on is how I can add multiple different custom tags. I can add @Par description but it changes it for both custom tags, even what I have is really helpful but this would make it much easier.
The text was updated successfully, but these errors were encountered: