code documentation - Can different styles be read by Doxygen -


can both style of comments below read doyxgen?

the doxy block comments in format:

/** * \brief * \param * \return */ 

and ones in libstdc++ in format:

/** * @brief * @param * @return */ 

i think correct formats like:

/*!   \brief   \param   \return */ 

and

/**  * @brief  * @param  * @return  */ 

mixed style couldn't work.


Comments

Popular posts from this blog

c++ - Do gcc's __float128 floating point numbers take the current rounding mode into account? -

java - the value of local variable is not used -