Difference between revisions of "DoxyBlocks plugin"
From Code::Blocks
(Described toolbar.) |
m (Formatting.) |
||
Line 17: | Line 17: | ||
; [[File:Comment block.png]] : 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'' | ; [[File:Comment block.png]] : 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'' | ||
− | <source lang="cpp"> | + | <source lang="cpp" enclose="div"> |
/** \brief | /** \brief | ||
* | * | ||
Line 31: | Line 31: | ||
; [[File:Comment line.png]] : Insert a line comment at the current cursor position. ''Ctrl-Alt-L'' | ; [[File:Comment line.png]] : Insert a line comment at the current cursor position. ''Ctrl-Alt-L'' | ||
− | <source lang="cpp"> | + | <source lang="cpp" enclose="div"> |
void MyClass::Foo(bool bar) | void MyClass::Foo(bool bar) | ||
{ | { |
Latest revision as of 00:02, 20 March 2012
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); /**< */
}