DoxyBlocks plugin
From Code::Blocks
DoxyBlocks is a plugin for Code::Blocks that integrates doxygen into the IDE. It allows you to create documentation, insert comment blocks and run HTML or CHM documents. It also provides configuration of some of the more commonly used settings and access to doxywizard for more detailed configuration.
The settings in the DoxyBlocks toolbar have the following meanings:
- Insert a comment block at the current line. Additionally, DoxyBlocks will try to intelligently read if a method exists on the line for which a comment is being added. Ctrl-Alt-B
/** \brief
*
* \param bar bool
* \return void
*
*/
void MyClass::Foo(bool bar)
{
fooBar(bar);
}
void MyClass::Foo(bool bar)
{
fooBar(bar); /**< */
}