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

Python Kivy ListView: How to delete selected ListItemButton? -

asp.net mvc 4 - A specified Include path is not valid. The EntityType '' does not declare a navigation property with the name '' -