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

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -