Is there a way to make visual studio automatically place the doxygen tags in a C++ source file ?
What I mean is for example this piece of code:
int foo(bool p);
If I type /// on top of it, Visual Studio automatically generates the following lines:
/// <summary>
///
/// </summary>
/// <param name="p"></param>
/// <returns></returns>
int foo(bool p);
My question is: is it possible to do the same with doxygen (when I type /**)? To make VS generate the following:
/**
* @brief
* @param p
* @return
*/
int foo(bool p)
My question is about writing the documentation tags (not generating the final doxygen).